UNPKG

359 BTypeScriptView Raw
1import { LogMessage, LogTable } from './interfaces';
2/**works in node and the browser.*/
3export declare function Log(...messages: (string | LogMessage)[]): void;
4export interface LogTableOptions {
5 padding?: number;
6 spacing?: number;
7}
8/**this function is node only*/
9export declare function LogTable(table: LogTable, options?: LogTableOptions): void;