smartenv/ts/index.ts

15 lines
453 B
TypeScript
Raw Normal View History

2016-02-17 20:44:40 +00:00
/// <reference path="typings/main.d.ts" />
2016-05-01 23:29:42 +00:00
import * as plugins from "./smartenv.plugins";
import * as classes from "./smartenv.classes";
import * as SmartenvEnvironment from "./smartenv.environment";
import * as SmartenvObjectstorage from "./smartenv.objectstorage";
2016-05-01 23:29:42 +00:00
var smartenv = {
getEnv: SmartenvEnvironment.getEnv,
printEnv: SmartenvEnvironment.printEnv,
obs: SmartenvObjectstorage.obs
}; //create smartenv object
2016-02-17 20:44:40 +00:00
export = smartenv;