smartfile/index.d.ts

37 lines
766 B
TypeScript
Raw Permalink Normal View History

2016-02-03 11:52:09 +00:00
/// <reference path="ts/typings/main.d.ts" />
declare module SmartfilePlugins {
var init: () => {
beautylog: any;
fs: any;
path: any;
2016-02-04 13:21:48 +00:00
q: any;
2016-02-03 11:52:09 +00:00
vinyl: any;
vinylFile: any;
yaml: any;
requireReload: any;
};
}
2016-02-04 13:21:48 +00:00
declare module SmartfileCheck {
var init: (objectArg: any) => void;
}
2016-02-03 11:52:09 +00:00
declare module SmartfileSimple {
var init: (objectArg: any) => void;
}
declare module SmartfileVinyl {
var init: (objectArg: any) => void;
}
declare module SmartfileRequire {
var init: (objectArg: any) => void;
}
declare var plugins: {
beautylog: any;
fs: any;
path: any;
2016-02-04 13:21:48 +00:00
q: any;
2016-02-03 11:52:09 +00:00
vinyl: any;
vinylFile: any;
yaml: any;
requireReload: any;
};
declare var smartfile: any;