smartlog-destination-local/ts/index.ts
2015-11-01 22:00:07 +01:00

21 lines
631 B
TypeScript

/// <reference path="./typings/tsd.d.ts" />
/// <reference path="./console.os.ts" />
/// <reference path="./console.browser.ts" />
var beautylog = function(logPlatform:string = "os") {
switch (logPlatform) {
case "os":
var beautylogOs = BeautylogOS.init();
return beautylogOs;
break;
case "browser":
var beautylogBrowser = BeautylogBrowser.init();
return beautylogBrowser;
break;
default:
console.log("something is strage about the way you required beautylog");
break;
}
};
module.exports = beautylog;