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