2016-09-20 17:56:49 +02:00
|
|
|
import 'typings-global';
|
|
|
|
import * as SmartfileFs from './smartfile.fs';
|
|
|
|
import * as SmartfileInterpreter from './smartfile.interpreter';
|
|
|
|
import * as SmartfileMemory from './smartfile.memory';
|
|
|
|
import * as SmartfileRemote from './smartfile.remote';
|
|
|
|
export { Smartfile } from './smartfile.classes.smartfile';
|
2016-06-23 18:31:55 +02:00
|
|
|
export declare let fs: typeof SmartfileFs;
|
|
|
|
export declare let interpreter: typeof SmartfileInterpreter;
|
2016-05-20 00:31:53 +02:00
|
|
|
export declare let memory: typeof SmartfileMemory;
|
|
|
|
export declare let remote: typeof SmartfileRemote;
|
|
|
|
export declare let requireReload: (path: string) => any;
|