smartfile/ts/index.ts

16 lines
347 B
TypeScript
Raw Normal View History

/// <reference path="./typings/tsd.d.ts" />
/// <reference path="./smartfile.plugins.ts" />
/// <reference path="./smartfile.simple.ts" />
/// <reference path="./smartfile.vinyl.ts" />
var plugins = SmartfilePlugins.init();
var smartfile:any = {};
SmartfileSimple.init(smartfile);
SmartfileVinyl.init(smartfile);
2015-11-24 17:52:24 +00:00
2015-11-03 18:57:29 +00:00
2015-11-03 19:14:41 +00:00
module.exports = smartfile;