smartfile/ts/index.ts

24 lines
713 B
TypeScript
Raw Normal View History

2016-02-03 11:52:09 +00:00
/// <reference path="./typings/main.d.ts" />
2016-03-14 02:50:14 +00:00
import plugins = require("./smartfile.plugins");
import SmartfileChecks = require("./smartfile.checks");
2016-03-18 09:19:46 +00:00
import SmartfileFsaction = require("./smartfile.fsaction");
import SmartfileGet = require("./smartfile.get");
import SmartfileLocal = require("./smartfile.local");
2016-04-02 21:03:18 +00:00
import SmartfileMemory = require("./smartfile.memory");
2016-03-18 09:19:46 +00:00
import SmartfileRemote = require("./smartfile.remote");
2015-11-24 17:52:24 +00:00
2016-03-14 02:50:14 +00:00
var smartfile:any = {
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;