From 8f233e8bc31e2e284c2f45d237295695d9a351ed Mon Sep 17 00:00:00 2001 From: Rich Adams Date: Wed, 4 Nov 2015 16:01:37 -0800 Subject: [PATCH] Fixing tabs, the folder originally had soft tabs --- request/request.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/request/request.d.ts b/request/request.d.ts index 49c41f8fc..961bc3fe4 100644 --- a/request/request.d.ts +++ b/request/request.d.ts @@ -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;