smartlog-destination-local/dist/beautylog.classes.table.d.ts
2016-05-14 01:18:44 +02:00

9 lines
208 B
TypeScript

export declare class Table {
tableHead: string[];
rows: any;
type: string;
constructor(tableTypeArg: string, tableHeadArrayArg?: string[]);
push(row: string[]): void;
print(): void;
}