@@ -424,15 +424,10 @@ declare var DecompressionStream: {
424
424
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
425
425
*/
426
426
interface ErrorEvent extends Event {
427
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
428
427
readonly colno : number ;
429
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
430
428
readonly error : any ;
431
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
432
429
readonly filename : string ;
433
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
434
430
readonly lineno : number ;
435
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
436
431
readonly message : string ;
437
432
}
438
433
@@ -664,11 +659,7 @@ interface MessageEvent<T = any> extends Event {
664
659
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
665
660
*/
666
661
readonly source : MessageEventSource | null ;
667
- /**
668
- * @deprecated
669
- *
670
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/initMessageEvent)
671
- */
662
+ /** @deprecated */
672
663
initMessageEvent ( type : string , bubbles ?: boolean , cancelable ?: boolean , data ?: any , origin ?: string , lastEventId ?: string , source ?: MessageEventSource | null , ports ?: MessagePort [ ] ) : void ;
673
664
}
674
665
@@ -1025,7 +1016,9 @@ declare var URL: {
1025
1016
prototype : URL ;
1026
1017
new ( url : string | URL , base ?: string | URL ) : URL ;
1027
1018
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static) */
1028
- canParse ( url : string | URL , base ?: string ) : boolean ;
1019
+ canParse ( url : string | URL , base ?: string | URL ) : boolean ;
1020
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) */
1021
+ parse ( url : string | URL , base ?: string | URL ) : URL | null ;
1029
1022
} ;
1030
1023
1031
1024
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams) */
@@ -1166,7 +1159,7 @@ interface Console {
1166
1159
clear ( ) : void ;
1167
1160
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
1168
1161
count ( label ?: string ) : void ;
1169
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static ) */
1162
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countreset_static ) */
1170
1163
countReset ( label ?: string ) : void ;
1171
1164
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
1172
1165
debug ( ...data : any [ ] ) : void ;
@@ -1178,9 +1171,9 @@ interface Console {
1178
1171
error ( ...data : any [ ] ) : void ;
1179
1172
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
1180
1173
group ( ...data : any [ ] ) : void ;
1181
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static ) */
1174
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupcollapsed_static ) */
1182
1175
groupCollapsed ( ...data : any [ ] ) : void ;
1183
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static ) */
1176
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupend_static ) */
1184
1177
groupEnd ( ) : void ;
1185
1178
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
1186
1179
info ( ...data : any [ ] ) : void ;
@@ -1190,9 +1183,9 @@ interface Console {
1190
1183
table ( tabularData ?: any , properties ?: string [ ] ) : void ;
1191
1184
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
1192
1185
time ( label ?: string ) : void ;
1193
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static ) */
1186
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeend_static ) */
1194
1187
timeEnd ( label ?: string ) : void ;
1195
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static ) */
1188
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timelog_static ) */
1196
1189
timeLog ( label ?: string , ...data : any [ ] ) : void ;
1197
1190
timeStamp ( label ?: string ) : void ;
1198
1191
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
@@ -1215,9 +1208,7 @@ declare namespace WebAssembly {
1215
1208
1216
1209
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
1217
1210
interface Global < T extends ValueType = ValueType > {
1218
- /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/value) */
1219
1211
value : ValueTypeMap [ T ] ;
1220
- /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/valueOf) */
1221
1212
valueOf ( ) : ValueTypeMap [ T ] ;
1222
1213
}
1223
1214
0 commit comments