2016-02-03 12:52:09 +01:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
2015-12-03 20:48:32 +01:00
|
|
|
|
2016-03-14 03:50:14 +01:00
|
|
|
import plugins = require("./smartfile.plugins");
|
|
|
|
import SmartfileChecks = require("./smartfile.checks");
|
2016-03-18 09:19:46 +00:00
|
|
|
import SmartfileFsaction = require("./smartfile.fsaction");
|
2016-03-20 17:36:38 +01:00
|
|
|
import SmartfileGet = require("./smartfile.get");
|
2016-03-18 17:34:31 +01:00
|
|
|
import SmartfileLocal = require("./smartfile.local");
|
2016-03-18 09:19:46 +00:00
|
|
|
import SmartfileRemote = require("./smartfile.remote");
|
2015-12-03 20:48:32 +01:00
|
|
|
|
2015-11-24 18:52:24 +01:00
|
|
|
|
2016-03-14 03:50:14 +01:00
|
|
|
var smartfile:any = {
|
2016-03-18 17:34:31 +01:00
|
|
|
fsaction: SmartfileFsaction,
|
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-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;
|