inferred-types 0.54.1 → 0.54.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -976,7 +976,7 @@ interface Something {
976
976
  * An object which resembles a promise and is guarenteed to provide a `.then` and `.catch`
977
977
  * callback hook.
978
978
  */
979
- interface Thenable {
979
+ interface Thenable extends PromiseLike<any> {
980
980
  then: (...args: any[]) => any;
981
981
  finally?: (...args: any[]) => any;
982
982
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inferred-types",
3
- "version": "0.54.1",
3
+ "version": "0.54.3",
4
4
  "description": "Functions which provide useful type inference on TS projects",
5
5
  "license": "MIT",
6
6
  "author": "Ken Snyder<ken@ken.net>",