smartenv/ts/index.ts

11 lines
323 B
TypeScript
Raw Normal View History

2016-02-17 20:44:40 +00:00
/// <reference path="typings/main.d.ts" />
2016-02-17 20:44:40 +00:00
import SmartenvEnvironment = require("./smartenv.environment");
import SmartenvObjectStorage = require("./smartenv.objectstorage");
2016-02-17 20:44:40 +00:00
var smartenv:any = {}; //create smartenv object
SmartenvEnvironment.init(smartenv);
smartenv.obs = SmartenvObjectStorage.obs;
2016-02-17 20:44:40 +00:00
export = smartenv;