@@ -1172,51 +1172,6 @@ declare var WritableStreamDefaultWriter: {
1172
1172
new < W = any > ( stream : WritableStream < W > ) : WritableStreamDefaultWriter < W > ;
1173
1173
} ;
1174
1174
1175
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
1176
- interface Console {
1177
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
1178
- assert ( condition ?: boolean , ...data : any [ ] ) : void ;
1179
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
1180
- clear ( ) : void ;
1181
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
1182
- count ( label ?: string ) : void ;
1183
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
1184
- countReset ( label ?: string ) : void ;
1185
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
1186
- debug ( ...data : any [ ] ) : void ;
1187
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
1188
- dir ( item ?: any , options ?: any ) : void ;
1189
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
1190
- dirxml ( ...data : any [ ] ) : void ;
1191
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
1192
- error ( ...data : any [ ] ) : void ;
1193
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
1194
- group ( ...data : any [ ] ) : void ;
1195
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
1196
- groupCollapsed ( ...data : any [ ] ) : void ;
1197
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
1198
- groupEnd ( ) : void ;
1199
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
1200
- info ( ...data : any [ ] ) : void ;
1201
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
1202
- log ( ...data : any [ ] ) : void ;
1203
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
1204
- table ( tabularData ?: any , properties ?: string [ ] ) : void ;
1205
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
1206
- time ( label ?: string ) : void ;
1207
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
1208
- timeEnd ( label ?: string ) : void ;
1209
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
1210
- timeLog ( label ?: string , ...data : any [ ] ) : void ;
1211
- timeStamp ( label ?: string ) : void ;
1212
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
1213
- trace ( ...data : any [ ] ) : void ;
1214
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
1215
- warn ( ...data : any [ ] ) : void ;
1216
- }
1217
-
1218
- declare var console : Console ;
1219
-
1220
1175
declare namespace WebAssembly {
1221
1176
interface CompileError extends Error {
1222
1177
}
@@ -1372,6 +1327,51 @@ declare namespace WebAssembly {
1372
1327
function validate ( bytes : BufferSource ) : boolean ;
1373
1328
}
1374
1329
1330
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) */
1331
+ interface Console {
1332
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/assert_static) */
1333
+ assert ( condition ?: boolean , ...data : any [ ] ) : void ;
1334
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) */
1335
+ clear ( ) : void ;
1336
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
1337
+ count ( label ?: string ) : void ;
1338
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
1339
+ countReset ( label ?: string ) : void ;
1340
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
1341
+ debug ( ...data : any [ ] ) : void ;
1342
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) */
1343
+ dir ( item ?: any , options ?: any ) : void ;
1344
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) */
1345
+ dirxml ( ...data : any [ ] ) : void ;
1346
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) */
1347
+ error ( ...data : any [ ] ) : void ;
1348
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
1349
+ group ( ...data : any [ ] ) : void ;
1350
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
1351
+ groupCollapsed ( ...data : any [ ] ) : void ;
1352
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
1353
+ groupEnd ( ) : void ;
1354
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
1355
+ info ( ...data : any [ ] ) : void ;
1356
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) */
1357
+ log ( ...data : any [ ] ) : void ;
1358
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) */
1359
+ table ( tabularData ?: any , properties ?: string [ ] ) : void ;
1360
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
1361
+ time ( label ?: string ) : void ;
1362
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
1363
+ timeEnd ( label ?: string ) : void ;
1364
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
1365
+ timeLog ( label ?: string , ...data : any [ ] ) : void ;
1366
+ timeStamp ( label ?: string ) : void ;
1367
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
1368
+ trace ( ...data : any [ ] ) : void ;
1369
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) */
1370
+ warn ( ...data : any [ ] ) : void ;
1371
+ }
1372
+
1373
+ declare var console : Console ;
1374
+
1375
1375
interface AudioWorkletProcessorConstructor {
1376
1376
new ( options : any ) : AudioWorkletProcessorImpl ;
1377
1377
}
0 commit comments