2016-05-14 23:58:40 +02:00
|
|
|
export { Table } from "./beautylog.classes.table";
|
|
|
|
export { Ora } from "./beautylog.classes.ora";
|
2016-05-14 01:18:44 +02:00
|
|
|
export declare let dir: (logText: any) => void;
|
|
|
|
export declare let error: (logText: any) => void;
|
|
|
|
export declare let figlet: (textArg: string, optionsArg?: any) => any;
|
|
|
|
export declare let figletSync: (textArg: string, optionsArg?: any) => boolean;
|
2016-05-03 22:42:28 +02:00
|
|
|
export declare let info: (logText: any) => void;
|
2016-05-14 01:18:44 +02:00
|
|
|
export declare let log: (logText?: string, logType?: string) => void;
|
2016-05-03 22:42:28 +02:00
|
|
|
export declare let ok: (logText: any) => void;
|
|
|
|
export declare let success: (logText: any) => void;
|
|
|
|
export declare let warn: (logText: any) => void;
|