2016-05-23 06:15:47 +00:00
|
|
|
import "typings-global";
|
2016-05-01 21:19:54 +00:00
|
|
|
import * as SmartfileChecks from "./smartfile.checks";
|
|
|
|
import * as SmartfileFsaction from "./smartfile.fsaction";
|
|
|
|
import * as SmartfileGet from "./smartfile.get";
|
|
|
|
import * as SmartfileLocal from "./smartfile.local";
|
|
|
|
import * as SmartfileMemory from "./smartfile.memory";
|
|
|
|
import * as SmartfileRemote from "./smartfile.remote";
|
2016-05-19 22:31:53 +00:00
|
|
|
export { Smartfile } from "./smartfile.classes.smartfile";
|
|
|
|
export declare let fsaction: typeof SmartfileFsaction;
|
|
|
|
export declare let fs: any;
|
|
|
|
export declare let checks: typeof SmartfileChecks;
|
|
|
|
export declare let get: typeof SmartfileGet;
|
|
|
|
export declare let local: typeof SmartfileLocal;
|
|
|
|
export declare let memory: typeof SmartfileMemory;
|
|
|
|
export declare let remote: typeof SmartfileRemote;
|
|
|
|
export declare let requireReload: (path: string) => any;
|