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