class Row extends Array<T>Re-exportimport { Row } from "https://deno.land/x/lume@v2.4.1/deps/cliffy.ts"; Row representation. Type ParametersoptionalT extends ICell | undefined = ICell | undefinedPropertiesprotectedoptions: IRowOptionsMethodsalign(direction: Direction, override?): thisAlign row content. border(enable: boolean, override?): thisEnable/disable cell border. clone(): RowClone row recursively with all options. getAlign(): DirectionGet row alignment. getBorder(): booleanCheck if row has border. hasBorder(): booleanCheck if row or any child cell has border. Static Methodsfrom<T extends ICell | undefined>(cells: IRow<T>): Row<T>Create a new row. If cells is a row, all cells and options of the row will be copied to the new row.