download extensions at build time

This commit is contained in:
Joao Moreno
2016-09-21 15:57:06 +02:00
parent d1796bab90
commit 98dde6a5f2
4 changed files with 241 additions and 1 deletions

23
build/lib/typings/gulp-remote-src.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
declare module 'gulp-remote-src' {
import stream = require("stream");
function remote(url: string, options: remote.IOptions): stream.Stream;
module remote {
export interface IRequestOptions {
body?: any;
json?: boolean;
method?: string;
headers?: any;
}
export interface IOptions {
base?: string;
buffer?: boolean;
requestOptions?: IRequestOptions;
}
}
export = remote;
}