Files
smartenv/ts/index.ts

12 lines
343 B
TypeScript
Raw Normal View History

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