mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
23 lines
410 B
TypeScript
23 lines
410 B
TypeScript
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;
|
|
} |