specpress
Version:
Export PDF and/or DOCX files from a subset of Markdown, ASN.1 and JSON files
13 lines (12 loc) • 451 B
TypeScript
export declare class HtmlTable {
rows: string[][];
constructor();
getNrofRows(): number;
getNrofColumns(): number;
getValue(aRow: number, aCol: number): string | null;
setValue(aRow: number, aCol: number, aValue: string | number): void;
private getRowSpan;
dump(aFileName: string, anIndentString?: string, aCompleteHtmlFile?: boolean): void;
toString(): string;
toHtmlString(anIndentString?: string): string;
}