UNPKG

reblessed

Version:

A high-level terminal interface library for node.js.

22 lines 433 B
export = Table; /** * Table */ declare function Table(options: any): Table; declare class Table { /** * Table */ constructor(options: any); pad: any; __proto__: any; type: string; _calculateMaxes(): any[]; rows: any; _maxes: any[]; setRows: (rows: any) => void; setData(rows: any): void; align: any; render(): any; } //# sourceMappingURL=table.d.ts.map