docx-rs/docx-wasm/js/table-row.ts

11 lines
167 B
TypeScript

import { TableCell } from "./table-cell";
export class TableRow {
cells: TableCell[] = [];
addCell(cell: TableCell) {
this.cells.push(cell);
this;
}
}