Fixing tabs, the folder originally had soft tabs

This commit is contained in:
Rich Adams
2015-11-04 16:01:37 -08:00
parent 001ca36ba5
commit 8f233e8bc3

14
request/request.d.ts vendored
View File

@@ -57,13 +57,13 @@ declare module 'request' {
export var initParams: any;
interface UriOptions {
uri: string;
}
interface UriOptions {
uri: string;
}
interface UrlOptions {
url: string;
}
interface UrlOptions {
url: string;
}
interface OptionalOptions {
callback?: (error: any, response: http.IncomingMessage, body: any) => void;
@@ -96,7 +96,7 @@ declare module 'request' {
gzip?: boolean;
}
export type Options = (UriOptions|UrlOptions)&OptionalOptions;
export type Options = (UriOptions|UrlOptions)&OptionalOptions;
export interface RequestPart {
headers?: Headers;