2016-02-17 21:44:40 +01:00
|
|
|
/// <reference path="typings/main.d.ts" />
|
2015-11-30 15:04:04 +01:00
|
|
|
|
2016-05-02 01:29:42 +02: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";
|
2015-11-30 15:04:04 +01:00
|
|
|
|
2016-05-02 01:29:42 +02:00
|
|
|
var smartenv = {
|
|
|
|
getEnv: SmartenvEnvironment.getEnv,
|
|
|
|
printEnv: SmartenvEnvironment.printEnv,
|
|
|
|
obs: SmartenvObjectstorage.obs
|
|
|
|
}; //create smartenv object
|
2015-11-28 14:49:44 +01:00
|
|
|
|
2016-02-17 21:44:40 +01:00
|
|
|
export = smartenv;
|