smartlog-destination-local/ts/beautylog.os.table.ts
Philipp Kunz be71cdb472 closes #3
2015-11-15 06:15:20 +01:00

14 lines
399 B
TypeScript

/// <reference path="./index.ts" />
module BeautylogOsTable {
export var cliTable;
export function init() {
cliTable = require("cli-table2");
var beautylogOsTable:any = {};
beautylogOsTable.new = function(type:string) {
var newConsoleTable = new ConsoleTable(type);
return newConsoleTable;
};
return beautylogOsTable;
}
}