11 lines
291 B
TypeScript
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;
|