inferred-types 0.54.1 → 0.54.2
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.
|
@@ -4685,7 +4685,7 @@ interface Something$1 {
|
|
|
4685
4685
|
* An object which resembles a promise and is guarenteed to provide a `.then` and `.catch`
|
|
4686
4686
|
* callback hook.
|
|
4687
4687
|
*/
|
|
4688
|
-
interface Thenable$1 {
|
|
4688
|
+
interface Thenable$1 extends PromiseLike<any> {
|
|
4689
4689
|
then: (...args: any[]) => any;
|
|
4690
4690
|
finally?: (...args: any[]) => any;
|
|
4691
4691
|
}
|
|
@@ -19642,7 +19642,7 @@ interface Something {
|
|
|
19642
19642
|
* An object which resembles a promise and is guarenteed to provide a `.then` and `.catch`
|
|
19643
19643
|
* callback hook.
|
|
19644
19644
|
*/
|
|
19645
|
-
interface Thenable {
|
|
19645
|
+
interface Thenable extends PromiseLike<any> {
|
|
19646
19646
|
then: (...args: any[]) => any;
|
|
19647
19647
|
finally?: (...args: any[]) => any;
|
|
19648
19648
|
}
|
|
@@ -618,7 +618,7 @@ interface Something {
|
|
|
618
618
|
* An object which resembles a promise and is guarenteed to provide a `.then` and `.catch`
|
|
619
619
|
* callback hook.
|
|
620
620
|
*/
|
|
621
|
-
interface Thenable {
|
|
621
|
+
interface Thenable extends PromiseLike<any> {
|
|
622
622
|
then: (...args: any[]) => any;
|
|
623
623
|
finally?: (...args: any[]) => any;
|
|
624
624
|
}
|
|
@@ -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
|
}
|