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.
- package/modules/inferred-types/dist/index.cjs +5 -0
- package/modules/inferred-types/dist/index.cjs.map +1 -1
- package/modules/inferred-types/dist/index.d.ts +5 -3
- package/modules/inferred-types/dist/index.js +4 -0
- package/modules/inferred-types/dist/index.js.map +1 -1
- package/modules/runtime/dist/index.cjs +7 -0
- package/modules/runtime/dist/index.cjs.map +1 -1
- package/modules/runtime/dist/index.d.ts +4 -2
- package/modules/runtime/dist/index.js +6 -0
- package/modules/runtime/dist/index.js.map +1 -1
- package/modules/types/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
}
|