12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
/// <reference path="typings/main.d.ts" />
|
|
|
|
import environment = require("./smartenv.environment");
|
|
import objectstorage = require("./smartenv.objectstorage");
|
|
|
|
var smartenv:any = {}; //create smartenv object
|
|
smartenv.getEnv = environment.getEnv;
|
|
smartenv.printEnv = environment.printEnv;
|
|
smartenv.obs = objectstorage.obs;
|
|
|
|
export = smartenv;
|