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

10 lines
233 B
TypeScript

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