2016-02-17 21:44:40 +01:00
|
|
|
/// <reference path="typings/main.d.ts" />
|
2015-11-30 15:04:04 +01:00
|
|
|
|
2016-02-18 13:27:45 +01:00
|
|
|
import environment = require("./smartenv.environment");
|
|
|
|
import objectstorage = require("./smartenv.objectstorage");
|
2015-11-30 15:04:04 +01:00
|
|
|
|
2016-02-17 21:44:40 +01:00
|
|
|
var smartenv:any = {}; //create smartenv object
|
2016-02-20 10:50:32 +01:00
|
|
|
smartenv.getEnv = environment.getEnv;
|
|
|
|
smartenv.printEnv = environment.printEnv;
|
2016-02-18 13:27:45 +01:00
|
|
|
smartenv.obs = objectstorage.obs;
|
2015-11-28 14:49:44 +01:00
|
|
|
|
2016-02-17 21:44:40 +01:00
|
|
|
export = smartenv;
|