fix request.d.ts CookieJar signature

This commit is contained in:
Maciej Kowalski
2015-07-23 19:25:03 +02:00
parent 80ee73de66
commit 5cbfd00b61
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -163,7 +163,7 @@ declare module 'request' {
export interface CookieJar {
setCookie(cookie: Cookie, uri: string|url.Url, options?: any): void
getCookieString(uri: string|url.Url): string
getCookies(uri: string|url.Url): Cookies[]
getCookies(uri: string|url.Url): Cookie[]
}
export interface CookieValue {