2016-05-23 08:15:47 +02:00
|
|
|
import "typings-global";
|
2015-12-03 20:48:32 +01:00
|
|
|
|
2016-05-01 23:19:54 +02:00
|
|
|
import * as plugins from "./smartfile.plugins";
|
2016-06-23 18:31:55 +02:00
|
|
|
import * as SmartfileFs from "./smartfile.fs";
|
|
|
|
import * as SmartfileInterpreter from "./smartfile.interpreter"
|
2016-05-01 23:19:54 +02:00
|
|
|
import * as SmartfileMemory from "./smartfile.memory";
|
|
|
|
import * as SmartfileRemote from "./smartfile.remote";
|
2015-12-03 20:48:32 +01:00
|
|
|
|
2016-05-20 00:31:53 +02:00
|
|
|
export {Smartfile} from "./smartfile.classes.smartfile";
|
2015-11-24 18:52:24 +01:00
|
|
|
|
2016-06-23 18:31:55 +02:00
|
|
|
export let fs = SmartfileFs;
|
|
|
|
export let interpreter = SmartfileInterpreter;
|
2016-05-20 00:31:53 +02:00
|
|
|
export let memory = SmartfileMemory;
|
|
|
|
export let remote = SmartfileRemote;
|
2016-06-23 18:31:55 +02:00
|
|
|
export let requireReload = SmartfileFs.requireReload;
|