smartlog-destination-local/ts/index.ts

19 lines
704 B
TypeScript
Raw Normal View History

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 classes from "./beautylog.classes";
import * as BeautylogLog from "./beautylog.log";
import * as BeautylogFiglet from "./beautylog.figlet"
import * as BeautylogTable from "./beautylog.table";
2016-05-01 23:41:21 +00:00
export let log = BeautylogLog.log;
export let info = BeautylogLog.info;
export let ok = BeautylogLog.ok;
export let success = BeautylogLog.success;
export let warn = BeautylogLog.warn;
export let error = BeautylogLog.error;
export let dir = BeautylogLog.dir;
export let figlet = BeautylogFiglet.figlet;
export let figletSync = BeautylogFiglet.figletSync;
export let table = BeautylogTable.table