@@ -119,7 +119,7 @@ interface AudioWorkletGlobalScope extends WorkletGlobalScope {
119
119
}
120
120
121
121
declare var AudioWorkletGlobalScope : {
122
- readonly prototype : AudioWorkletGlobalScope ;
122
+ prototype : AudioWorkletGlobalScope ;
123
123
new ( ) : AudioWorkletGlobalScope ;
124
124
} ;
125
125
@@ -128,7 +128,7 @@ interface AudioWorkletProcessor {
128
128
}
129
129
130
130
declare var AudioWorkletProcessor : {
131
- readonly prototype : AudioWorkletProcessor ;
131
+ prototype : AudioWorkletProcessor ;
132
132
new ( ) : AudioWorkletProcessor ;
133
133
} ;
134
134
@@ -139,7 +139,7 @@ interface ByteLengthQueuingStrategy extends QueuingStrategy<ArrayBufferView> {
139
139
}
140
140
141
141
declare var ByteLengthQueuingStrategy : {
142
- readonly prototype : ByteLengthQueuingStrategy ;
142
+ prototype : ByteLengthQueuingStrategy ;
143
143
new ( init : QueuingStrategyInit ) : ByteLengthQueuingStrategy ;
144
144
} ;
145
145
@@ -150,7 +150,7 @@ interface CountQueuingStrategy extends QueuingStrategy {
150
150
}
151
151
152
152
declare var CountQueuingStrategy : {
153
- readonly prototype : CountQueuingStrategy ;
153
+ prototype : CountQueuingStrategy ;
154
154
new ( init : QueuingStrategyInit ) : CountQueuingStrategy ;
155
155
} ;
156
156
@@ -226,7 +226,7 @@ interface Event {
226
226
}
227
227
228
228
declare var Event : {
229
- readonly prototype : Event ;
229
+ prototype : Event ;
230
230
new ( type : string , eventInitDict ?: EventInit ) : Event ;
231
231
readonly AT_TARGET : number ;
232
232
readonly BUBBLING_PHASE : number ;
@@ -263,7 +263,7 @@ interface EventTarget {
263
263
}
264
264
265
265
declare var EventTarget : {
266
- readonly prototype : EventTarget ;
266
+ prototype : EventTarget ;
267
267
new ( ) : EventTarget ;
268
268
} ;
269
269
@@ -294,7 +294,7 @@ interface MessageEvent<T = any> extends Event {
294
294
}
295
295
296
296
declare var MessageEvent : {
297
- readonly prototype : MessageEvent ;
297
+ prototype : MessageEvent ;
298
298
new < T > ( type : string , eventInitDict ?: MessageEventInit < T > ) : MessageEvent < T > ;
299
299
} ;
300
300
@@ -329,7 +329,7 @@ interface MessagePort extends EventTarget {
329
329
}
330
330
331
331
declare var MessagePort : {
332
- readonly prototype : MessagePort ;
332
+ prototype : MessagePort ;
333
333
new ( ) : MessagePort ;
334
334
} ;
335
335
@@ -345,7 +345,7 @@ interface ReadableStream<R = any> {
345
345
}
346
346
347
347
declare var ReadableStream : {
348
- readonly prototype : ReadableStream ;
348
+ prototype : ReadableStream ;
349
349
new < R = any > ( underlyingSource ?: UnderlyingSource < R > , strategy ?: QueuingStrategy < R > ) : ReadableStream < R > ;
350
350
} ;
351
351
@@ -357,7 +357,7 @@ interface ReadableStreamDefaultController<R = any> {
357
357
}
358
358
359
359
declare var ReadableStreamDefaultController : {
360
- readonly prototype : ReadableStreamDefaultController ;
360
+ prototype : ReadableStreamDefaultController ;
361
361
new ( ) : ReadableStreamDefaultController ;
362
362
} ;
363
363
@@ -367,7 +367,7 @@ interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericRead
367
367
}
368
368
369
369
declare var ReadableStreamDefaultReader : {
370
- readonly prototype : ReadableStreamDefaultReader ;
370
+ prototype : ReadableStreamDefaultReader ;
371
371
new < R = any > ( stream : ReadableStream < R > ) : ReadableStreamDefaultReader < R > ;
372
372
} ;
373
373
@@ -382,7 +382,7 @@ interface TransformStream<I = any, O = any> {
382
382
}
383
383
384
384
declare var TransformStream : {
385
- readonly prototype : TransformStream ;
385
+ prototype : TransformStream ;
386
386
new < I = any , O = any > ( transformer ?: Transformer < I , O > , writableStrategy ?: QueuingStrategy < I > , readableStrategy ?: QueuingStrategy < O > ) : TransformStream < I , O > ;
387
387
} ;
388
388
@@ -394,15 +394,15 @@ interface TransformStreamDefaultController<O = any> {
394
394
}
395
395
396
396
declare var TransformStreamDefaultController : {
397
- readonly prototype : TransformStreamDefaultController ;
397
+ prototype : TransformStreamDefaultController ;
398
398
new ( ) : TransformStreamDefaultController ;
399
399
} ;
400
400
401
401
interface WorkletGlobalScope {
402
402
}
403
403
404
404
declare var WorkletGlobalScope : {
405
- readonly prototype : WorkletGlobalScope ;
405
+ prototype : WorkletGlobalScope ;
406
406
new ( ) : WorkletGlobalScope ;
407
407
} ;
408
408
@@ -415,7 +415,7 @@ interface WritableStream<W = any> {
415
415
}
416
416
417
417
declare var WritableStream : {
418
- readonly prototype : WritableStream ;
418
+ prototype : WritableStream ;
419
419
new < W = any > ( underlyingSink ?: UnderlyingSink < W > , strategy ?: QueuingStrategy < W > ) : WritableStream < W > ;
420
420
} ;
421
421
@@ -425,7 +425,7 @@ interface WritableStreamDefaultController {
425
425
}
426
426
427
427
declare var WritableStreamDefaultController : {
428
- readonly prototype : WritableStreamDefaultController ;
428
+ prototype : WritableStreamDefaultController ;
429
429
new ( ) : WritableStreamDefaultController ;
430
430
} ;
431
431
@@ -441,7 +441,7 @@ interface WritableStreamDefaultWriter<W = any> {
441
441
}
442
442
443
443
declare var WritableStreamDefaultWriter : {
444
- readonly prototype : WritableStreamDefaultWriter ;
444
+ prototype : WritableStreamDefaultWriter ;
445
445
new < W = any > ( stream : WritableStream < W > ) : WritableStreamDefaultWriter < W > ;
446
446
} ;
447
447
@@ -475,7 +475,7 @@ declare namespace WebAssembly {
475
475
}
476
476
477
477
var CompileError : {
478
- readonly prototype : CompileError ;
478
+ prototype : CompileError ;
479
479
new ( ) : CompileError ;
480
480
} ;
481
481
@@ -485,7 +485,7 @@ declare namespace WebAssembly {
485
485
}
486
486
487
487
var Global : {
488
- readonly prototype : Global ;
488
+ prototype : Global ;
489
489
new ( descriptor : GlobalDescriptor , v ?: any ) : Global ;
490
490
} ;
491
491
@@ -494,15 +494,15 @@ declare namespace WebAssembly {
494
494
}
495
495
496
496
var Instance : {
497
- readonly prototype : Instance ;
497
+ prototype : Instance ;
498
498
new ( module : Module , importObject ?: Imports ) : Instance ;
499
499
} ;
500
500
501
501
interface LinkError extends Error {
502
502
}
503
503
504
504
var LinkError : {
505
- readonly prototype : LinkError ;
505
+ prototype : LinkError ;
506
506
new ( ) : LinkError ;
507
507
} ;
508
508
@@ -512,15 +512,15 @@ declare namespace WebAssembly {
512
512
}
513
513
514
514
var Memory : {
515
- readonly prototype : Memory ;
515
+ prototype : Memory ;
516
516
new ( descriptor : MemoryDescriptor ) : Memory ;
517
517
} ;
518
518
519
519
interface Module {
520
520
}
521
521
522
522
var Module : {
523
- readonly prototype : Module ;
523
+ prototype : Module ;
524
524
new ( bytes : BufferSource ) : Module ;
525
525
customSections ( moduleObject : Module , sectionName : string ) : ArrayBuffer [ ] ;
526
526
exports ( moduleObject : Module ) : ModuleExportDescriptor [ ] ;
@@ -531,7 +531,7 @@ declare namespace WebAssembly {
531
531
}
532
532
533
533
var RuntimeError : {
534
- readonly prototype : RuntimeError ;
534
+ prototype : RuntimeError ;
535
535
new ( ) : RuntimeError ;
536
536
} ;
537
537
@@ -543,7 +543,7 @@ declare namespace WebAssembly {
543
543
}
544
544
545
545
var Table : {
546
- readonly prototype : Table ;
546
+ prototype : Table ;
547
547
new ( descriptor : TableDescriptor , value ?: any ) : Table ;
548
548
} ;
549
549
0 commit comments