smartenv/ts/index.js

13 lines
459 B
JavaScript
Raw Normal View History

2015-11-26 05:31:31 +00:00
/// <reference path="typings/tsd.d.ts" />
2015-11-30 18:58:35 +00:00
/// <reference path="smartenv.classes.ts" />
/// <reference path="smartenv.environment.ts" />
/// <reference path="smartenv.objectstorage.ts" />
var plugins = {
beautylog: require("beautylog")("os"),
_: require("lodash")
2015-11-26 05:31:31 +00:00
};
2015-11-30 18:58:35 +00:00
var smartenv = {}; //create smartenv object
2015-12-02 14:23:48 +00:00
SmartenvEnvironment.init(smartenv);
2015-11-30 18:58:35 +00:00
smartenv.obs = SmartenvObjectStorage.init();
2015-11-26 05:31:31 +00:00
module.exports = smartenv;
//# sourceMappingURL=index.js.map