smartfile/ts/index.ts
2016-06-23 17:42:08 +02:00

15 lines
487 B
TypeScript

import "typings-global";
import * as plugins from "./smartfile.plugins";
import * as SmartfileLocal from "./smartfile.fs";
import * as SmartfileMemory from "./smartfile.memory";
import * as SmartfileRemote from "./smartfile.remote";
export {Smartfile} from "./smartfile.classes.smartfile";
export let fs = plugins.fs;
export let local = SmartfileLocal;
export let memory = SmartfileMemory;
export let remote = SmartfileRemote;
export let requireReload = SmartfileLocal.requireReload;