2016-02-02 16:49:16 +01:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
2015-11-01 22:00:07 +01:00
|
|
|
|
2016-05-02 01:41:21 +02:00
|
|
|
import * as plugins from "./beautylog.plugins";
|
2016-05-02 02:23:40 +02:00
|
|
|
import * as BeautylogLog from "./beautylog.log";
|
|
|
|
import * as BeautylogFiglet from "./beautylog.figlet"
|
2016-05-19 19:27:09 +02:00
|
|
|
import * as BeautylogConsole from "./beautylog.console";
|
2016-05-02 01:41:21 +02:00
|
|
|
|
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 let dir = BeautylogLog.dir;
|
|
|
|
export let error = BeautylogLog.error;
|
|
|
|
export let figlet = BeautylogFiglet.figlet;
|
|
|
|
export let figletSync = BeautylogFiglet.figletSync;
|
2016-05-03 22:42:28 +02:00
|
|
|
export let info = BeautylogLog.info;
|
2016-05-14 01:18:44 +02:00
|
|
|
export let log = BeautylogLog.log;
|
2016-05-03 22:42:28 +02:00
|
|
|
export let ok = BeautylogLog.ok;
|
|
|
|
export let success = BeautylogLog.success;
|
2016-05-19 19:45:31 +02:00
|
|
|
export let warn = BeautylogLog.warn;
|