smartarchive/index.d.ts
2016-01-20 04:01:21 +01:00

29 lines
513 B
TypeScript

/// <reference path="ts/typings/tsd.d.ts" />
declare module RemotezipPlugins {
var init: () => {
beautylog: any;
gulp: any;
g: {
unzip: any;
remoteSrc: any;
};
path: any;
};
}
declare var plugins: {
beautylog: any;
gulp: any;
g: {
unzip: any;
remoteSrc: any;
};
path: any;
};
declare var remotezip: {
get: (options: {
from: string;
toPath: string;
cb?: any;
}) => void;
};