smartarchive/index.d.ts

26 lines
469 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;
};
declare var remotezip: (options: {
from: string;
toPath: string;
}) => void;