smartarchive/index.d.ts

29 lines
513 B
TypeScript
Raw Normal View History

2016-01-18 18:38:55 +00:00
/// <reference path="ts/typings/tsd.d.ts" />
declare module RemotezipPlugins {
var init: () => {
2016-01-18 21:17:24 +00:00
beautylog: any;
gulp: any;
g: {
unzip: any;
remoteSrc: any;
};
path: any;
2016-01-18 18:38:55 +00:00
};
}
2016-01-18 21:17:24 +00:00
declare var plugins: {
beautylog: any;
gulp: any;
g: {
unzip: any;
remoteSrc: any;
};
path: any;
};
2016-01-20 02:30:03 +00:00
declare var remotezip: {
get: (options: {
from: string;
toPath: string;
2016-01-20 03:01:21 +00:00
cb?: any;
2016-01-20 02:30:03 +00:00
}) => void;
};