smartlog-destination-local/dist/index.d.ts

14 lines
671 B
TypeScript
Raw Normal View History

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