smartenv/ts/index.ts
2016-02-18 13:27:45 +01:00

11 lines
291 B
TypeScript

/// <reference path="typings/main.d.ts" />
import environment = require("./smartenv.environment");
import objectstorage = require("./smartenv.objectstorage");
var smartenv:any = {}; //create smartenv object
environment.init(smartenv);
smartenv.obs = objectstorage.obs;
export = smartenv;