console-table-printer
Version:
Printing pretty tables on console log
7 lines (6 loc) • 423 B
TypeScript
import { Dictionary } from '../models/common';
import { ComplexOptions } from '../models/external-table';
import TableInternal from './internal-table';
export declare const renderTable: (table: TableInternal) => string;
export declare const renderSimpleTable: (rows: Dictionary[], tableOptions?: ComplexOptions) => string;
export declare const printSimpleTable: (rows: Dictionary[], tableOptions?: ComplexOptions) => void;