@types/request-promise
Advanced tools
Comparing version 4.1.44 to 4.1.45
@@ -7,2 +7,3 @@ // Type definitions for request-promise 4.1 | ||
// Matt R. Wilson <https://github.com/mastermatt> | ||
// Sergey Bakulin <https://github.com/vansergen> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -17,8 +18,8 @@ // TypeScript Version: 3.2 | ||
declare namespace requestPromise { | ||
interface RequestPromise extends request.Request { | ||
then: Promise<any>["then"]; | ||
catch: Promise<any>["catch"]; | ||
finally: Promise<any>["finally"]; | ||
cancel: Promise<any>["cancel"]; | ||
promise(): Promise<any>; | ||
interface RequestPromise<T = any> extends request.Request { | ||
then: Promise<T>['then']; | ||
catch: Promise<T>['catch']; | ||
finally: Promise<T>['finally']; | ||
cancel: Promise<T>['cancel']; | ||
promise(): Promise<T>; | ||
} | ||
@@ -25,0 +26,0 @@ |
{ | ||
"name": "@types/request-promise", | ||
"version": "4.1.44", | ||
"version": "4.1.45", | ||
"description": "TypeScript definitions for request-promise", | ||
@@ -26,6 +26,11 @@ "license": "MIT", | ||
"githubUsername": "mastermatt" | ||
}, | ||
{ | ||
"name": "Sergey Bakulin", | ||
"url": "https://github.com/vansergen", | ||
"githubUsername": "vansergen" | ||
} | ||
], | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
@@ -41,4 +46,4 @@ "type": "git", | ||
}, | ||
"typesPublisherContentHash": "643dffd53cb2ba5edad7c0cd15d28486668302e109ca770541dcb4b0439d3372", | ||
"typesPublisherContentHash": "784aed627b6303533bf7e875bf124ba7e49794e90600ef42eecfc7ab37c133e0", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -5,13 +5,13 @@ # Installation | ||
# Summary | ||
This package contains type definitions for request-promise ( https://github.com/request/request-promise ). | ||
This package contains type definitions for request-promise (https://github.com/request/request-promise). | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/request-promise | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/request-promise. | ||
Additional Details | ||
* Last updated: Fri, 24 May 2019 21:01:00 GMT | ||
* Dependencies: @types/request, @types/bluebird | ||
### Additional Details | ||
* Last updated: Mon, 18 Nov 2019 20:42:48 GMT | ||
* Dependencies: [@types/request](https://npmjs.com/package/@types/request), [@types/bluebird](https://npmjs.com/package/@types/bluebird) | ||
* Global values: none | ||
# Credits | ||
These definitions were written by Christopher Glantschnig <https://github.com/cglantschnig>, Joe Skeen <https://github.com/joeskeen>, Aya Morisawa <https://github.com/AyaMorisawa>, Matt R. Wilson <https://github.com/mastermatt>. | ||
These definitions were written by Christopher Glantschnig (https://github.com/cglantschnig), Joe Skeen (https://github.com/joeskeen), Aya Morisawa (https://github.com/AyaMorisawa), Matt R. Wilson (https://github.com/mastermatt), and Sergey Bakulin (https://github.com/vansergen). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6547
72