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 {
3939}
4040
4141interface PromiseRejectionEventInit extends EventInit {
42- promise : Promise < any > ;
42+ promise : any ;
4343 reason ?: any ;
4444}
4545
@@ -714,7 +714,7 @@ declare var MessagePort: {
714714/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
715715interface PromiseRejectionEvent extends Event {
716716 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
717- readonly promise : Promise < any > ;
717+ readonly promise : any ;
718718 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
719719 readonly reason : any ;
720720}
Original file line number Diff line number Diff line change @@ -1191,7 +1191,7 @@ interface ProgressEventInit extends EventInit {
11911191}
11921192
11931193interface PromiseRejectionEventInit extends EventInit {
1194- promise: Promise< any> ;
1194+ promise: any;
11951195 reason?: any;
11961196}
11971197
@@ -17747,7 +17747,7 @@ declare var ProgressEvent: {
1774717747/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
1774817748interface PromiseRejectionEvent extends Event {
1774917749 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
17750- readonly promise: Promise< any> ;
17750+ readonly promise: any;
1775117751 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
1775217752 readonly reason: any;
1775317753}
Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ interface ProgressEventInit extends EventInit {
446446}
447447
448448interface PromiseRejectionEventInit extends EventInit {
449- promise : Promise < any > ;
449+ promise : any ;
450450 reason ?: any ;
451451}
452452
@@ -4360,7 +4360,7 @@ declare var ProgressEvent: {
43604360/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
43614361interface PromiseRejectionEvent extends Event {
43624362 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4363- readonly promise : Promise < any > ;
4363+ readonly promise : any ;
43644364 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
43654365 readonly reason : any ;
43664366}
Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ interface ProgressEventInit extends EventInit {
416416}
417417
418418interface PromiseRejectionEventInit extends EventInit {
419- promise : Promise < any > ;
419+ promise : any ;
420420 reason ?: any ;
421421}
422422
@@ -4232,7 +4232,7 @@ declare var ProgressEvent: {
42324232/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
42334233interface PromiseRejectionEvent extends Event {
42344234 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4235- readonly promise : Promise < any > ;
4235+ readonly promise : any ;
42364236 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
42374237 readonly reason : any ;
42384238}
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ interface ProgressEventInit extends EventInit {
470470}
471471
472472interface PromiseRejectionEventInit extends EventInit {
473- promise : Promise < any > ;
473+ promise : any ;
474474 reason ?: any ;
475475}
476476
@@ -4620,7 +4620,7 @@ declare var ProgressEvent: {
46204620/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) */
46214621interface PromiseRejectionEvent extends Event {
46224622 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) */
4623- readonly promise : Promise < any > ;
4623+ readonly promise : any ;
46244624 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) */
46254625 readonly reason : any ;
46264626}
@@ -4766,7 +4766,7 @@ declare var RTCEncodedVideoFrame: {
47664766} ;
47674767
47684768/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer) */
4769- interface RTCRtpScriptTransformer {
4769+ interface RTCRtpScriptTransformer extends EventTarget {
47704770 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/options) */
47714771 readonly options : any ;
47724772 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransformer/readable) */
You can’t perform that action at this time.
0 commit comments