frontend/.pnpm-store/v3/files/4f/17b820caf09835ca35380eb6de007cc46b5ba0c3e107a4db309eea2290f42c4417cd18f4330cb2e79acfe1621833c207967900ac5a92df1b1c979000bf6bd9

22 lines
530 B
Plaintext

import Cell from './cell';
import Base from './base';
import { TCell } from './types';
declare class Row extends Base {
private _cells;
constructor(cells?: Cell[]);
cell(index: number): Cell;
get cells(): Cell[];
set cells(cells: Cell[]);
toArray(): TCell[];
/**
* Creates a new Row from an array of Cell(s)
* This method generates a new ID for the Row and all nested elements
*
* @param cells
* @returns Row
*/
static fromCells(cells: Cell[]): Row;
get length(): number;
}
export default Row;