2016-05-02 00:23:40 +00:00
|
|
|
import * as classes from "./beautylog.classes";
|
|
|
|
declare let beautylog: {
|
|
|
|
log: (logText?: string, logType?: string) => void;
|
|
|
|
info: (logText: any) => void;
|
|
|
|
ok: (logText: any) => void;
|
|
|
|
success: (logText: any) => void;
|
|
|
|
warn: (logText: any) => void;
|
|
|
|
error: (logText: any) => void;
|
|
|
|
dir: (logText: any) => void;
|
|
|
|
figlet: (textArg: string, optionsArg?: any) => any;
|
|
|
|
figletSync: (textArg: string, optionsArg?: any) => boolean;
|
|
|
|
table: {
|
|
|
|
new: (typeArg: string, tableHeadArrayArg?: any) => classes.ConsoleTable;
|
|
|
|
};
|
|
|
|
};
|
2016-05-01 23:41:21 +00:00
|
|
|
export = beautylog;
|