smartfile/ts/index.ts

15 lines
487 B
TypeScript
Raw Normal View History

import "typings-global";
2016-05-01 21:19:54 +00:00
import * as plugins from "./smartfile.plugins";
2016-06-23 15:42:08 +00:00
import * as SmartfileLocal from "./smartfile.fs";
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";
2015-11-24 17:52:24 +00:00
export let fs = plugins.fs;
export let local = SmartfileLocal;
export let memory = SmartfileMemory;
export let remote = SmartfileRemote;
export let requireReload = SmartfileLocal.requireReload;