smartlog-destination-local/dist/beautylog.classes.table.d.ts

10 lines
233 B
TypeScript
Raw Normal View History

2016-05-23 07:10:30 +00:00
import "typings-global";
2016-05-13 23:18:44 +00:00
export declare class Table {
tableHead: string[];
rows: any;
type: string;
constructor(tableTypeArg: string, tableHeadArrayArg?: string[]);
push(row: string[]): void;
print(): void;
}