smartfile/ts/index.ts

24 lines
702 B
TypeScript
Raw Normal View History

2016-02-03 11:52:09 +00:00
/// <reference path="./typings/main.d.ts" />
2016-05-01 21:19:54 +00:00
import * as plugins from "./smartfile.plugins";
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";
2015-11-24 17:52:24 +00:00
2016-05-01 21:19:54 +00:00
var smartfile = {
fsaction: SmartfileFsaction,
2016-03-20 23:28:29 +00:00
fs: plugins.fs,
2016-03-14 02:50:14 +00:00
checks: SmartfileChecks,
get: SmartfileGet,
local: SmartfileLocal,
2016-04-02 21:03:18 +00:00
memory: SmartfileMemory,
2016-03-18 09:19:46 +00:00
remote: SmartfileRemote,
requireReload: SmartfileLocal.requireReload
2016-03-14 02:50:14 +00:00
};
2015-11-03 18:57:29 +00:00
2016-03-14 02:50:14 +00:00
export = smartfile;