update structure

This commit is contained in:
2016-02-18 13:27:45 +01:00
parent 0806fa9714
commit 0a29fafaeb
4 changed files with 19 additions and 19 deletions

View File

@@ -1,10 +1,10 @@
/// <reference path="typings/main.d.ts" />
import SmartenvEnvironment = require("./smartenv.environment");
import SmartenvObjectStorage = require("./smartenv.objectstorage");
import environment = require("./smartenv.environment");
import objectstorage = require("./smartenv.objectstorage");
var smartenv:any = {}; //create smartenv object
SmartenvEnvironment.init(smartenv);
smartenv.obs = SmartenvObjectStorage.obs;
environment.init(smartenv);
smartenv.obs = objectstorage.obs;
export = smartenv;