smartenv/ts/index.ts

12 lines
343 B
TypeScript
Raw Normal View History

2016-02-17 20:44:40 +00:00
/// <reference path="typings/main.d.ts" />
2016-02-18 12:27:45 +00:00
import environment = require("./smartenv.environment");
import objectstorage = require("./smartenv.objectstorage");
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;
2016-02-17 20:44:40 +00:00
export = smartenv;