smartarchive/index.d.ts
2016-01-20 03:30:03 +01:00

28 lines
495 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;
}) => void;
};