smartfile/dist/index.d.ts

12 lines
569 B
TypeScript
Raw Permalink Normal View History

import "typings-global";
2016-06-23 16:31:55 +00:00
import * as SmartfileFs from "./smartfile.fs";
import * as SmartfileInterpreter from "./smartfile.interpreter";
2016-05-01 21:19:54 +00:00
import * as SmartfileMemory from "./smartfile.memory";
import * as SmartfileRemote from "./smartfile.remote";
export { Smartfile } from "./smartfile.classes.smartfile";
2016-06-23 16:31:55 +00:00
export declare let fs: typeof SmartfileFs;
export declare let interpreter: typeof SmartfileInterpreter;
export declare let memory: typeof SmartfileMemory;
export declare let remote: typeof SmartfileRemote;
export declare let requireReload: (path: string) => any;