smartlog-destination-local/ts/index.ts

19 lines
693 B
TypeScript
Raw Normal View History

2016-05-23 07:10:30 +00:00
import "typings-global";
2015-11-01 21:00:07 +00:00
2016-05-01 23:41:21 +00:00
import * as plugins from "./beautylog.plugins";
2016-05-02 00:23:40 +00:00
import * as BeautylogLog from "./beautylog.log";
import * as BeautylogFiglet from "./beautylog.figlet"
2016-05-19 17:27:09 +00:00
import * as BeautylogConsole from "./beautylog.console";
2016-05-01 23:41:21 +00:00
2016-05-14 21:58:40 +00:00
export {Table} from "./beautylog.classes.table";
export {Ora} from "./beautylog.classes.ora";
2016-05-13 23:18:44 +00:00
export let dir = BeautylogLog.dir;
export let error = BeautylogLog.error;
export let figlet = BeautylogFiglet.figlet;
export let figletSync = BeautylogFiglet.figletSync;
export let info = BeautylogLog.info;
2016-05-13 23:18:44 +00:00
export let log = BeautylogLog.log;
export let ok = BeautylogLog.ok;
export let success = BeautylogLog.success;
2016-05-19 17:45:31 +00:00
export let warn = BeautylogLog.warn;