import RowModel from "./RowModel"; import TableMarkup from "./Markup/TableMarkup"; import { Dictionary } from "typescript-collections"; export default class WorksheetModel { rows: Dictionary; tableMarkup: TableMarkup; name: string; constructor(tableMarkup?: TableMarkup, rows?: Dictionary, name?: string); }