File tree Expand file tree Collapse file tree 6 files changed +77
-77
lines changed Expand file tree Collapse file tree 6 files changed +77
-77
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ interface MessageEventInit<T = any> extends EventInit {
39
39
}
40
40
41
41
interface PromiseRejectionEventInit extends EventInit {
42
- promise : Promise < any > ;
42
+ promise : any ;
43
43
reason ?: any ;
44
44
}
45
45
@@ -714,7 +714,7 @@ declare var MessagePort: {
714
714
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
715
715
interface PromiseRejectionEvent extends Event {
716
716
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
717
- readonly promise : Promise < any > ;
717
+ readonly promise : any ;
718
718
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
719
719
readonly reason : any ;
720
720
}
Original file line number Diff line number Diff line change @@ -1191,7 +1191,7 @@ interface ProgressEventInit extends EventInit {
1191
1191
}
1192
1192
1193
1193
interface PromiseRejectionEventInit extends EventInit {
1194
- promise: Promise< any> ;
1194
+ promise: any;
1195
1195
reason?: any;
1196
1196
}
1197
1197
@@ -17747,7 +17747,7 @@ declare var ProgressEvent: {
17747
17747
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
17748
17748
interface PromiseRejectionEvent extends Event {
17749
17749
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
17750
- readonly promise: Promise< any> ;
17750
+ readonly promise: any;
17751
17751
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
17752
17752
readonly reason: any;
17753
17753
}
Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ interface ProgressEventInit extends EventInit {
446
446
}
447
447
448
448
interface PromiseRejectionEventInit extends EventInit {
449
- promise : Promise < any > ;
449
+ promise : any ;
450
450
reason ?: any ;
451
451
}
452
452
@@ -4360,7 +4360,7 @@ declare var ProgressEvent: {
4360
4360
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
4361
4361
interface PromiseRejectionEvent extends Event {
4362
4362
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4363
- readonly promise : Promise < any > ;
4363
+ readonly promise : any ;
4364
4364
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
4365
4365
readonly reason : any ;
4366
4366
}
Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ interface ProgressEventInit extends EventInit {
416
416
}
417
417
418
418
interface PromiseRejectionEventInit extends EventInit {
419
- promise : Promise < any > ;
419
+ promise : any ;
420
420
reason ?: any ;
421
421
}
422
422
@@ -4232,7 +4232,7 @@ declare var ProgressEvent: {
4232
4232
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
4233
4233
interface PromiseRejectionEvent extends Event {
4234
4234
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4235
- readonly promise : Promise < any > ;
4235
+ readonly promise : any ;
4236
4236
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
4237
4237
readonly reason : any ;
4238
4238
}
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ interface ProgressEventInit extends EventInit {
470
470
}
471
471
472
472
interface PromiseRejectionEventInit extends EventInit {
473
- promise : Promise < any > ;
473
+ promise : any ;
474
474
reason ?: any ;
475
475
}
476
476
@@ -4620,7 +4620,7 @@ declare var ProgressEvent: {
4620
4620
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
4621
4621
interface PromiseRejectionEvent extends Event {
4622
4622
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4623
- readonly promise : Promise < any > ;
4623
+ readonly promise : any ;
4624
4624
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
4625
4625
readonly reason : any ;
4626
4626
}
@@ -4766,7 +4766,7 @@ declare var RTCEncodedVideoFrame: {
4766
4766
} ;
4767
4767
4768
4768
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer) */
4769
- interface RTCRtpScriptTransformer {
4769
+ interface RTCRtpScriptTransformer extends EventTarget {
4770
4770
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/options) */
4771
4771
readonly options : any ;
4772
4772
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/readable) */
You can’t perform that action at this time.
0 commit comments