Files
smartfile/ts/index.ts

21 lines
608 B
TypeScript
Raw Normal View History

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