class Row extends Array<T>Re-exportimport { Row } from "https://deno.land/x/cliffy@v0.17.0/table/mod.ts"; Row representation. Type ParametersoptionalT extends ICell = ICellPropertiesprotectedoptions: IRowOptionsMethodsborder(enable: boolean, override?): thisEnable/disable cell border. clone(): RowClone row recursively with all options. getBorder(): booleanCheck if row has border. hasBorder(): booleanCheck if row or any child cell has border. Static Methodsfrom<T extends ICell = ICell>(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.