2016-02-02 15:49:16 +00:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
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;
|
2016-05-03 20:42:28 +00:00
|
|
|
export let info = BeautylogLog.info;
|
2016-05-13 23:18:44 +00:00
|
|
|
export let log = BeautylogLog.log;
|
2016-05-03 20:42:28 +00:00
|
|
|
export let ok = BeautylogLog.ok;
|
|
|
|
export let success = BeautylogLog.success;
|
2016-05-19 17:45:31 +00:00
|
|
|
export let warn = BeautylogLog.warn;
|