2016-02-23 13:34:40 +00:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
|
|
|
import classes = require("./beautylog.classes");
|
2015-11-13 21:53:28 +00:00
|
|
|
|
2016-02-23 13:34:40 +00:00
|
|
|
var beautylogOsTable:any = {};
|
|
|
|
|
|
|
|
beautylogOsTable.new = function(typeArg:string,tableHeadArrayArg?) {
|
|
|
|
var newConsoleTable = new classes.ConsoleTable(typeArg,tableHeadArrayArg);
|
|
|
|
return newConsoleTable;
|
|
|
|
};
|
|
|
|
export = beautylogOsTable;
|