smartlog-destination-local/ts/beautylog.classes.ts

12 lines
374 B
TypeScript
Raw Normal View History

2016-02-23 13:34:40 +00:00
/// <reference path="./typings/main.d.ts" />
2016-05-13 23:18:44 +00:00
import {Table} from "./beautylog.classes.table";
import {Ora} from "./beautylog.classes.ora";
2015-11-15 05:15:20 +00:00
2016-05-13 23:18:44 +00:00
export let table = function(tableTypeArg:string,tableHeadArrayArg?:string[]){
return new Table(tableTypeArg,tableHeadArrayArg);
2015-11-15 05:15:20 +00:00
}
2016-05-13 23:18:44 +00:00
export let ora = function(textArg:string,colorArg:string){
return new Ora(textArg,colorArg);
}