import {TableCell} from "./tableCell"; import {EditableTableCell} from "./editableTableCell"; export class TableRow { private tableCells: Array = new Array(); private id: any; constructor(id: any, tableCells: Array) { this.tableCells = tableCells; this.id = id; } getTableCells() { return this.tableCells; } getId() { return this.id; } }