@typescript-eslint/scope-manager 8.57.3-alpha.1 → 8.57.3-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/dom.asynciterable.js +1 -7
- package/dist/lib/dom.iterable.js +1 -78
- package/dist/lib/dom.js +266 -10
- package/dist/lib/es2025.collection.d.ts +2 -0
- package/dist/lib/es2025.collection.js +17 -0
- package/dist/lib/es2025.d.ts +2 -0
- package/dist/lib/es2025.float16.d.ts +2 -0
- package/dist/lib/es2025.float16.js +19 -0
- package/dist/lib/es2025.full.d.ts +2 -0
- package/dist/lib/es2025.full.js +24 -0
- package/dist/lib/es2025.intl.d.ts +2 -0
- package/dist/lib/es2025.intl.js +13 -0
- package/dist/lib/es2025.iterator.d.ts +2 -0
- package/dist/lib/es2025.iterator.js +16 -0
- package/dist/lib/es2025.js +26 -0
- package/dist/lib/es2025.promise.d.ts +2 -0
- package/dist/lib/es2025.promise.js +12 -0
- package/dist/lib/es2025.regexp.d.ts +2 -0
- package/dist/lib/es2025.regexp.js +12 -0
- package/dist/lib/esnext.collection.js +4 -5
- package/dist/lib/esnext.date.d.ts +2 -0
- package/dist/lib/esnext.date.js +13 -0
- package/dist/lib/esnext.intl.js +2 -1
- package/dist/lib/esnext.js +9 -9
- package/dist/lib/esnext.temporal.d.ts +2 -0
- package/dist/lib/esnext.temporal.js +15 -0
- package/dist/lib/esnext.typedarrays.d.ts +2 -0
- package/dist/lib/esnext.typedarrays.js +15 -0
- package/dist/lib/index.js +31 -9
- package/dist/lib/webworker.asynciterable.js +1 -7
- package/dist/lib/webworker.iterable.js +1 -32
- package/dist/lib/webworker.js +197 -5
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -5
package/dist/lib/webworker.js
CHANGED
|
@@ -6,9 +6,12 @@
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.webworker = void 0;
|
|
8
8
|
const base_config_1 = require("./base-config");
|
|
9
|
+
const es2015_1 = require("./es2015");
|
|
10
|
+
const es2018_asynciterable_1 = require("./es2018.asynciterable");
|
|
9
11
|
exports.webworker = {
|
|
10
|
-
libs: [],
|
|
12
|
+
libs: [es2015_1.es2015, es2018_asynciterable_1.es2018_asynciterable],
|
|
11
13
|
variables: [
|
|
14
|
+
['AacEncoderConfig', base_config_1.TYPE],
|
|
12
15
|
['AddEventListenerOptions', base_config_1.TYPE],
|
|
13
16
|
['AesCbcParams', base_config_1.TYPE],
|
|
14
17
|
['AesCtrParams', base_config_1.TYPE],
|
|
@@ -68,6 +71,67 @@ exports.webworker = {
|
|
|
68
71
|
['FileSystemRemoveOptions', base_config_1.TYPE],
|
|
69
72
|
['FontFaceDescriptors', base_config_1.TYPE],
|
|
70
73
|
['FontFaceSetLoadEventInit', base_config_1.TYPE],
|
|
74
|
+
['GPUBindGroupDescriptor', base_config_1.TYPE],
|
|
75
|
+
['GPUBindGroupEntry', base_config_1.TYPE],
|
|
76
|
+
['GPUBindGroupLayoutDescriptor', base_config_1.TYPE],
|
|
77
|
+
['GPUBindGroupLayoutEntry', base_config_1.TYPE],
|
|
78
|
+
['GPUBlendComponent', base_config_1.TYPE],
|
|
79
|
+
['GPUBlendState', base_config_1.TYPE],
|
|
80
|
+
['GPUBufferBinding', base_config_1.TYPE],
|
|
81
|
+
['GPUBufferBindingLayout', base_config_1.TYPE],
|
|
82
|
+
['GPUBufferDescriptor', base_config_1.TYPE],
|
|
83
|
+
['GPUCanvasConfiguration', base_config_1.TYPE],
|
|
84
|
+
['GPUCanvasToneMapping', base_config_1.TYPE],
|
|
85
|
+
['GPUColorDict', base_config_1.TYPE],
|
|
86
|
+
['GPUColorTargetState', base_config_1.TYPE],
|
|
87
|
+
['GPUCommandBufferDescriptor', base_config_1.TYPE],
|
|
88
|
+
['GPUCommandEncoderDescriptor', base_config_1.TYPE],
|
|
89
|
+
['GPUComputePassDescriptor', base_config_1.TYPE],
|
|
90
|
+
['GPUComputePassTimestampWrites', base_config_1.TYPE],
|
|
91
|
+
['GPUComputePipelineDescriptor', base_config_1.TYPE],
|
|
92
|
+
['GPUCopyExternalImageDestInfo', base_config_1.TYPE],
|
|
93
|
+
['GPUCopyExternalImageSourceInfo', base_config_1.TYPE],
|
|
94
|
+
['GPUDepthStencilState', base_config_1.TYPE],
|
|
95
|
+
['GPUDeviceDescriptor', base_config_1.TYPE],
|
|
96
|
+
['GPUExtent3DDict', base_config_1.TYPE],
|
|
97
|
+
['GPUExternalTextureBindingLayout', base_config_1.TYPE],
|
|
98
|
+
['GPUExternalTextureDescriptor', base_config_1.TYPE],
|
|
99
|
+
['GPUFragmentState', base_config_1.TYPE],
|
|
100
|
+
['GPUMultisampleState', base_config_1.TYPE],
|
|
101
|
+
['GPUObjectDescriptorBase', base_config_1.TYPE],
|
|
102
|
+
['GPUOrigin2DDict', base_config_1.TYPE],
|
|
103
|
+
['GPUOrigin3DDict', base_config_1.TYPE],
|
|
104
|
+
['GPUPipelineDescriptorBase', base_config_1.TYPE],
|
|
105
|
+
['GPUPipelineErrorInit', base_config_1.TYPE],
|
|
106
|
+
['GPUPipelineLayoutDescriptor', base_config_1.TYPE],
|
|
107
|
+
['GPUPrimitiveState', base_config_1.TYPE],
|
|
108
|
+
['GPUProgrammableStage', base_config_1.TYPE],
|
|
109
|
+
['GPUQuerySetDescriptor', base_config_1.TYPE],
|
|
110
|
+
['GPUQueueDescriptor', base_config_1.TYPE],
|
|
111
|
+
['GPURenderBundleDescriptor', base_config_1.TYPE],
|
|
112
|
+
['GPURenderBundleEncoderDescriptor', base_config_1.TYPE],
|
|
113
|
+
['GPURenderPassColorAttachment', base_config_1.TYPE],
|
|
114
|
+
['GPURenderPassDepthStencilAttachment', base_config_1.TYPE],
|
|
115
|
+
['GPURenderPassDescriptor', base_config_1.TYPE],
|
|
116
|
+
['GPURenderPassLayout', base_config_1.TYPE],
|
|
117
|
+
['GPURenderPassTimestampWrites', base_config_1.TYPE],
|
|
118
|
+
['GPURenderPipelineDescriptor', base_config_1.TYPE],
|
|
119
|
+
['GPURequestAdapterOptions', base_config_1.TYPE],
|
|
120
|
+
['GPUSamplerBindingLayout', base_config_1.TYPE],
|
|
121
|
+
['GPUSamplerDescriptor', base_config_1.TYPE],
|
|
122
|
+
['GPUShaderModuleDescriptor', base_config_1.TYPE],
|
|
123
|
+
['GPUStencilFaceState', base_config_1.TYPE],
|
|
124
|
+
['GPUStorageTextureBindingLayout', base_config_1.TYPE],
|
|
125
|
+
['GPUTexelCopyBufferInfo', base_config_1.TYPE],
|
|
126
|
+
['GPUTexelCopyBufferLayout', base_config_1.TYPE],
|
|
127
|
+
['GPUTexelCopyTextureInfo', base_config_1.TYPE],
|
|
128
|
+
['GPUTextureBindingLayout', base_config_1.TYPE],
|
|
129
|
+
['GPUTextureDescriptor', base_config_1.TYPE],
|
|
130
|
+
['GPUTextureViewDescriptor', base_config_1.TYPE],
|
|
131
|
+
['GPUUncapturedErrorEventInit', base_config_1.TYPE],
|
|
132
|
+
['GPUVertexAttribute', base_config_1.TYPE],
|
|
133
|
+
['GPUVertexBufferLayout', base_config_1.TYPE],
|
|
134
|
+
['GPUVertexState', base_config_1.TYPE],
|
|
71
135
|
['GetNotificationOptions', base_config_1.TYPE],
|
|
72
136
|
['HkdfParams', base_config_1.TYPE],
|
|
73
137
|
['HmacImportParams', base_config_1.TYPE],
|
|
@@ -121,12 +185,15 @@ exports.webworker = {
|
|
|
121
185
|
['RTCEncodedAudioFrameMetadata', base_config_1.TYPE],
|
|
122
186
|
['RTCEncodedFrameMetadata', base_config_1.TYPE],
|
|
123
187
|
['RTCEncodedVideoFrameMetadata', base_config_1.TYPE],
|
|
188
|
+
['ReadableStreamBYOBReaderReadOptions', base_config_1.TYPE],
|
|
124
189
|
['ReadableStreamGetReaderOptions', base_config_1.TYPE],
|
|
125
190
|
['ReadableStreamIteratorOptions', base_config_1.TYPE],
|
|
126
191
|
['ReadableStreamReadDoneResult', base_config_1.TYPE],
|
|
127
192
|
['ReadableStreamReadValueResult', base_config_1.TYPE],
|
|
128
193
|
['ReadableWritablePair', base_config_1.TYPE],
|
|
129
194
|
['RegistrationOptions', base_config_1.TYPE],
|
|
195
|
+
['Report', base_config_1.TYPE],
|
|
196
|
+
['ReportBody', base_config_1.TYPE],
|
|
130
197
|
['ReportingObserverOptions', base_config_1.TYPE],
|
|
131
198
|
['RequestInit', base_config_1.TYPE],
|
|
132
199
|
['ResponseInit', base_config_1.TYPE],
|
|
@@ -136,14 +203,23 @@ exports.webworker = {
|
|
|
136
203
|
['RsaOaepParams', base_config_1.TYPE],
|
|
137
204
|
['RsaOtherPrimesInfo', base_config_1.TYPE],
|
|
138
205
|
['RsaPssParams', base_config_1.TYPE],
|
|
206
|
+
['SchedulerPostTaskOptions', base_config_1.TYPE],
|
|
139
207
|
['SecurityPolicyViolationEventInit', base_config_1.TYPE],
|
|
140
208
|
['StorageEstimate', base_config_1.TYPE],
|
|
141
209
|
['StreamPipeOptions', base_config_1.TYPE],
|
|
142
210
|
['StructuredSerializeOptions', base_config_1.TYPE],
|
|
211
|
+
['SvcOutputMetadata', base_config_1.TYPE],
|
|
212
|
+
['TaskControllerInit', base_config_1.TYPE],
|
|
213
|
+
['TaskPriorityChangeEventInit', base_config_1.TYPE],
|
|
214
|
+
['TaskSignalAnyInit', base_config_1.TYPE],
|
|
143
215
|
['TextDecodeOptions', base_config_1.TYPE],
|
|
144
216
|
['TextDecoderOptions', base_config_1.TYPE],
|
|
145
217
|
['TextEncoderEncodeIntoResult', base_config_1.TYPE],
|
|
146
218
|
['Transformer', base_config_1.TYPE],
|
|
219
|
+
['URLPatternComponentResult', base_config_1.TYPE],
|
|
220
|
+
['URLPatternInit', base_config_1.TYPE],
|
|
221
|
+
['URLPatternOptions', base_config_1.TYPE],
|
|
222
|
+
['URLPatternResult', base_config_1.TYPE],
|
|
147
223
|
['UnderlyingByteSource', base_config_1.TYPE],
|
|
148
224
|
['UnderlyingDefaultSource', base_config_1.TYPE],
|
|
149
225
|
['UnderlyingSink', base_config_1.TYPE],
|
|
@@ -295,7 +371,47 @@ exports.webworker = {
|
|
|
295
371
|
['FontFaceSetLoadEvent', base_config_1.TYPE_VALUE],
|
|
296
372
|
['FontFaceSource', base_config_1.TYPE],
|
|
297
373
|
['FormData', base_config_1.TYPE_VALUE],
|
|
298
|
-
['
|
|
374
|
+
['GPU', base_config_1.TYPE_VALUE],
|
|
375
|
+
['GPUAdapter', base_config_1.TYPE_VALUE],
|
|
376
|
+
['GPUAdapterInfo', base_config_1.TYPE_VALUE],
|
|
377
|
+
['GPUBindGroup', base_config_1.TYPE_VALUE],
|
|
378
|
+
['GPUBindGroupLayout', base_config_1.TYPE_VALUE],
|
|
379
|
+
['GPUBindingCommandsMixin', base_config_1.TYPE],
|
|
380
|
+
['GPUBuffer', base_config_1.TYPE_VALUE],
|
|
381
|
+
['GPUCanvasContext', base_config_1.TYPE_VALUE],
|
|
382
|
+
['GPUCommandBuffer', base_config_1.TYPE_VALUE],
|
|
383
|
+
['GPUCommandEncoder', base_config_1.TYPE_VALUE],
|
|
384
|
+
['GPUCompilationInfo', base_config_1.TYPE_VALUE],
|
|
385
|
+
['GPUCompilationMessage', base_config_1.TYPE_VALUE],
|
|
386
|
+
['GPUComputePassEncoder', base_config_1.TYPE_VALUE],
|
|
387
|
+
['GPUComputePipeline', base_config_1.TYPE_VALUE],
|
|
388
|
+
['GPUDebugCommandsMixin', base_config_1.TYPE],
|
|
389
|
+
['GPUDeviceEventMap', base_config_1.TYPE],
|
|
390
|
+
['GPUDevice', base_config_1.TYPE_VALUE],
|
|
391
|
+
['GPUDeviceLostInfo', base_config_1.TYPE_VALUE],
|
|
392
|
+
['GPUError', base_config_1.TYPE_VALUE],
|
|
393
|
+
['GPUExternalTexture', base_config_1.TYPE_VALUE],
|
|
394
|
+
['GPUInternalError', base_config_1.TYPE_VALUE],
|
|
395
|
+
['GPUObjectBase', base_config_1.TYPE],
|
|
396
|
+
['GPUOutOfMemoryError', base_config_1.TYPE_VALUE],
|
|
397
|
+
['GPUPipelineBase', base_config_1.TYPE],
|
|
398
|
+
['GPUPipelineError', base_config_1.TYPE_VALUE],
|
|
399
|
+
['GPUPipelineLayout', base_config_1.TYPE_VALUE],
|
|
400
|
+
['GPUQuerySet', base_config_1.TYPE_VALUE],
|
|
401
|
+
['GPUQueue', base_config_1.TYPE_VALUE],
|
|
402
|
+
['GPURenderBundle', base_config_1.TYPE_VALUE],
|
|
403
|
+
['GPURenderBundleEncoder', base_config_1.TYPE_VALUE],
|
|
404
|
+
['GPURenderCommandsMixin', base_config_1.TYPE],
|
|
405
|
+
['GPURenderPassEncoder', base_config_1.TYPE_VALUE],
|
|
406
|
+
['GPURenderPipeline', base_config_1.TYPE_VALUE],
|
|
407
|
+
['GPUSampler', base_config_1.TYPE_VALUE],
|
|
408
|
+
['GPUShaderModule', base_config_1.TYPE_VALUE],
|
|
409
|
+
['GPUSupportedFeatures', base_config_1.TYPE_VALUE],
|
|
410
|
+
['GPUSupportedLimits', base_config_1.TYPE_VALUE],
|
|
411
|
+
['GPUTexture', base_config_1.TYPE_VALUE],
|
|
412
|
+
['GPUTextureView', base_config_1.TYPE_VALUE],
|
|
413
|
+
['GPUUncapturedErrorEvent', base_config_1.TYPE_VALUE],
|
|
414
|
+
['GPUValidationError', base_config_1.TYPE_VALUE],
|
|
299
415
|
['GenericTransformStream', base_config_1.TYPE],
|
|
300
416
|
['Headers', base_config_1.TYPE_VALUE],
|
|
301
417
|
['IDBCursor', base_config_1.TYPE_VALUE],
|
|
@@ -335,6 +451,7 @@ exports.webworker = {
|
|
|
335
451
|
['NavigationPreloadManager', base_config_1.TYPE_VALUE],
|
|
336
452
|
['NavigatorBadge', base_config_1.TYPE],
|
|
337
453
|
['NavigatorConcurrentHardware', base_config_1.TYPE],
|
|
454
|
+
['NavigatorGPU', base_config_1.TYPE],
|
|
338
455
|
['NavigatorID', base_config_1.TYPE],
|
|
339
456
|
['NavigatorLanguage', base_config_1.TYPE],
|
|
340
457
|
['NavigatorLocks', base_config_1.TYPE],
|
|
@@ -373,6 +490,7 @@ exports.webworker = {
|
|
|
373
490
|
['PromiseRejectionEvent', base_config_1.TYPE_VALUE],
|
|
374
491
|
['PushEvent', base_config_1.TYPE_VALUE],
|
|
375
492
|
['PushManager', base_config_1.TYPE_VALUE],
|
|
493
|
+
['PushManagerAttribute', base_config_1.TYPE],
|
|
376
494
|
['PushMessageData', base_config_1.TYPE_VALUE],
|
|
377
495
|
['PushSubscription', base_config_1.TYPE_VALUE],
|
|
378
496
|
['PushSubscriptionChangeEvent', base_config_1.TYPE_VALUE],
|
|
@@ -390,11 +508,10 @@ exports.webworker = {
|
|
|
390
508
|
['ReadableStreamDefaultController', base_config_1.TYPE_VALUE],
|
|
391
509
|
['ReadableStreamDefaultReader', base_config_1.TYPE_VALUE],
|
|
392
510
|
['ReadableStreamGenericReader', base_config_1.TYPE],
|
|
393
|
-
['Report', base_config_1.TYPE_VALUE],
|
|
394
|
-
['ReportBody', base_config_1.TYPE_VALUE],
|
|
395
511
|
['ReportingObserver', base_config_1.TYPE_VALUE],
|
|
396
512
|
['Request', base_config_1.TYPE_VALUE],
|
|
397
513
|
['Response', base_config_1.TYPE_VALUE],
|
|
514
|
+
['Scheduler', base_config_1.TYPE_VALUE],
|
|
398
515
|
['SecurityPolicyViolationEvent', base_config_1.TYPE_VALUE],
|
|
399
516
|
['ServiceWorkerEventMap', base_config_1.TYPE],
|
|
400
517
|
['ServiceWorker', base_config_1.TYPE_VALUE],
|
|
@@ -409,6 +526,10 @@ exports.webworker = {
|
|
|
409
526
|
['StorageManager', base_config_1.TYPE_VALUE],
|
|
410
527
|
['StylePropertyMapReadOnly', base_config_1.TYPE_VALUE],
|
|
411
528
|
['SubtleCrypto', base_config_1.TYPE_VALUE],
|
|
529
|
+
['TaskController', base_config_1.TYPE_VALUE],
|
|
530
|
+
['TaskPriorityChangeEvent', base_config_1.TYPE_VALUE],
|
|
531
|
+
['TaskSignalEventMap', base_config_1.TYPE],
|
|
532
|
+
['TaskSignal', base_config_1.TYPE_VALUE],
|
|
412
533
|
['TextDecoder', base_config_1.TYPE_VALUE],
|
|
413
534
|
['TextDecoderCommon', base_config_1.TYPE],
|
|
414
535
|
['TextDecoderStream', base_config_1.TYPE_VALUE],
|
|
@@ -419,6 +540,7 @@ exports.webworker = {
|
|
|
419
540
|
['TransformStream', base_config_1.TYPE_VALUE],
|
|
420
541
|
['TransformStreamDefaultController', base_config_1.TYPE_VALUE],
|
|
421
542
|
['URL', base_config_1.TYPE_VALUE],
|
|
543
|
+
['URLPattern', base_config_1.TYPE_VALUE],
|
|
422
544
|
['URLSearchParams', base_config_1.TYPE_VALUE],
|
|
423
545
|
['VideoColorSpace', base_config_1.TYPE_VALUE],
|
|
424
546
|
['VideoDecoderEventMap', base_config_1.TYPE],
|
|
@@ -439,6 +561,7 @@ exports.webworker = {
|
|
|
439
561
|
['WEBGL_draw_buffers', base_config_1.TYPE],
|
|
440
562
|
['WEBGL_lose_context', base_config_1.TYPE],
|
|
441
563
|
['WEBGL_multi_draw', base_config_1.TYPE],
|
|
564
|
+
['WGSLLanguageFeatures', base_config_1.TYPE_VALUE],
|
|
442
565
|
['WebGL2RenderingContext', base_config_1.TYPE_VALUE],
|
|
443
566
|
['WebGL2RenderingContextBase', base_config_1.TYPE],
|
|
444
567
|
['WebGL2RenderingContextOverloads', base_config_1.TYPE],
|
|
@@ -494,6 +617,7 @@ exports.webworker = {
|
|
|
494
617
|
['PerformanceObserverCallback', base_config_1.TYPE],
|
|
495
618
|
['QueuingStrategySize', base_config_1.TYPE],
|
|
496
619
|
['ReportingObserverCallback', base_config_1.TYPE],
|
|
620
|
+
['SchedulerPostTaskCallback', base_config_1.TYPE],
|
|
497
621
|
['TransformerFlushCallback', base_config_1.TYPE],
|
|
498
622
|
['TransformerStartCallback', base_config_1.TYPE],
|
|
499
623
|
['TransformerTransformCallback', base_config_1.TYPE],
|
|
@@ -537,6 +661,31 @@ exports.webworker = {
|
|
|
537
661
|
['GLsizeiptr', base_config_1.TYPE],
|
|
538
662
|
['GLuint', base_config_1.TYPE],
|
|
539
663
|
['GLuint64', base_config_1.TYPE],
|
|
664
|
+
['GPUBindingResource', base_config_1.TYPE],
|
|
665
|
+
['GPUBufferDynamicOffset', base_config_1.TYPE],
|
|
666
|
+
['GPUBufferUsageFlags', base_config_1.TYPE],
|
|
667
|
+
['GPUColor', base_config_1.TYPE],
|
|
668
|
+
['GPUColorWriteFlags', base_config_1.TYPE],
|
|
669
|
+
['GPUCopyExternalImageSource', base_config_1.TYPE],
|
|
670
|
+
['GPUDepthBias', base_config_1.TYPE],
|
|
671
|
+
['GPUExtent3D', base_config_1.TYPE],
|
|
672
|
+
['GPUFlagsConstant', base_config_1.TYPE],
|
|
673
|
+
['GPUIndex32', base_config_1.TYPE],
|
|
674
|
+
['GPUIntegerCoordinate', base_config_1.TYPE],
|
|
675
|
+
['GPUIntegerCoordinateOut', base_config_1.TYPE],
|
|
676
|
+
['GPUMapModeFlags', base_config_1.TYPE],
|
|
677
|
+
['GPUOrigin2D', base_config_1.TYPE],
|
|
678
|
+
['GPUOrigin3D', base_config_1.TYPE],
|
|
679
|
+
['GPUPipelineConstantValue', base_config_1.TYPE],
|
|
680
|
+
['GPUSampleMask', base_config_1.TYPE],
|
|
681
|
+
['GPUShaderStageFlags', base_config_1.TYPE],
|
|
682
|
+
['GPUSignedOffset32', base_config_1.TYPE],
|
|
683
|
+
['GPUSize32', base_config_1.TYPE],
|
|
684
|
+
['GPUSize32Out', base_config_1.TYPE],
|
|
685
|
+
['GPUSize64', base_config_1.TYPE],
|
|
686
|
+
['GPUSize64Out', base_config_1.TYPE],
|
|
687
|
+
['GPUStencilValue', base_config_1.TYPE],
|
|
688
|
+
['GPUTextureUsageFlags', base_config_1.TYPE],
|
|
540
689
|
['HashAlgorithmIdentifier', base_config_1.TYPE],
|
|
541
690
|
['HeadersInit', base_config_1.TYPE],
|
|
542
691
|
['IDBValidKey', base_config_1.TYPE],
|
|
@@ -558,8 +707,10 @@ exports.webworker = {
|
|
|
558
707
|
['TexImageSource', base_config_1.TYPE],
|
|
559
708
|
['TimerHandler', base_config_1.TYPE],
|
|
560
709
|
['Transferable', base_config_1.TYPE],
|
|
710
|
+
['URLPatternInput', base_config_1.TYPE],
|
|
561
711
|
['Uint32List', base_config_1.TYPE],
|
|
562
712
|
['XMLHttpRequestBodyInit', base_config_1.TYPE],
|
|
713
|
+
['AacBitstreamFormat', base_config_1.TYPE],
|
|
563
714
|
['AlphaOption', base_config_1.TYPE],
|
|
564
715
|
['AudioSampleFormat', base_config_1.TYPE],
|
|
565
716
|
['AvcBitstreamFormat', base_config_1.TYPE],
|
|
@@ -592,6 +743,40 @@ exports.webworker = {
|
|
|
592
743
|
['FontFaceLoadStatus', base_config_1.TYPE],
|
|
593
744
|
['FontFaceSetLoadStatus', base_config_1.TYPE],
|
|
594
745
|
['FrameType', base_config_1.TYPE],
|
|
746
|
+
['GPUAddressMode', base_config_1.TYPE],
|
|
747
|
+
['GPUAutoLayoutMode', base_config_1.TYPE],
|
|
748
|
+
['GPUBlendFactor', base_config_1.TYPE],
|
|
749
|
+
['GPUBlendOperation', base_config_1.TYPE],
|
|
750
|
+
['GPUBufferBindingType', base_config_1.TYPE],
|
|
751
|
+
['GPUBufferMapState', base_config_1.TYPE],
|
|
752
|
+
['GPUCanvasAlphaMode', base_config_1.TYPE],
|
|
753
|
+
['GPUCanvasToneMappingMode', base_config_1.TYPE],
|
|
754
|
+
['GPUCompareFunction', base_config_1.TYPE],
|
|
755
|
+
['GPUCompilationMessageType', base_config_1.TYPE],
|
|
756
|
+
['GPUCullMode', base_config_1.TYPE],
|
|
757
|
+
['GPUDeviceLostReason', base_config_1.TYPE],
|
|
758
|
+
['GPUErrorFilter', base_config_1.TYPE],
|
|
759
|
+
['GPUFeatureName', base_config_1.TYPE],
|
|
760
|
+
['GPUFilterMode', base_config_1.TYPE],
|
|
761
|
+
['GPUFrontFace', base_config_1.TYPE],
|
|
762
|
+
['GPUIndexFormat', base_config_1.TYPE],
|
|
763
|
+
['GPULoadOp', base_config_1.TYPE],
|
|
764
|
+
['GPUMipmapFilterMode', base_config_1.TYPE],
|
|
765
|
+
['GPUPipelineErrorReason', base_config_1.TYPE],
|
|
766
|
+
['GPUPowerPreference', base_config_1.TYPE],
|
|
767
|
+
['GPUPrimitiveTopology', base_config_1.TYPE],
|
|
768
|
+
['GPUQueryType', base_config_1.TYPE],
|
|
769
|
+
['GPUSamplerBindingType', base_config_1.TYPE],
|
|
770
|
+
['GPUStencilOperation', base_config_1.TYPE],
|
|
771
|
+
['GPUStorageTextureAccess', base_config_1.TYPE],
|
|
772
|
+
['GPUStoreOp', base_config_1.TYPE],
|
|
773
|
+
['GPUTextureAspect', base_config_1.TYPE],
|
|
774
|
+
['GPUTextureDimension', base_config_1.TYPE],
|
|
775
|
+
['GPUTextureFormat', base_config_1.TYPE],
|
|
776
|
+
['GPUTextureSampleType', base_config_1.TYPE],
|
|
777
|
+
['GPUTextureViewDimension', base_config_1.TYPE],
|
|
778
|
+
['GPUVertexFormat', base_config_1.TYPE],
|
|
779
|
+
['GPUVertexStepMode', base_config_1.TYPE],
|
|
595
780
|
['GlobalCompositeOperation', base_config_1.TYPE],
|
|
596
781
|
['HardwareAcceleration', base_config_1.TYPE],
|
|
597
782
|
['HdrMetadataType', base_config_1.TYPE],
|
|
@@ -599,6 +784,7 @@ exports.webworker = {
|
|
|
599
784
|
['IDBRequestReadyState', base_config_1.TYPE],
|
|
600
785
|
['IDBTransactionDurability', base_config_1.TYPE],
|
|
601
786
|
['IDBTransactionMode', base_config_1.TYPE],
|
|
787
|
+
['ImageDataPixelFormat', base_config_1.TYPE],
|
|
602
788
|
['ImageOrientation', base_config_1.TYPE],
|
|
603
789
|
['ImageSmoothingQuality', base_config_1.TYPE],
|
|
604
790
|
['KeyFormat', base_config_1.TYPE],
|
|
@@ -619,7 +805,6 @@ exports.webworker = {
|
|
|
619
805
|
['PremultiplyAlpha', base_config_1.TYPE],
|
|
620
806
|
['PushEncryptionKeyName', base_config_1.TYPE],
|
|
621
807
|
['RTCDataChannelState', base_config_1.TYPE],
|
|
622
|
-
['RTCEncodedVideoFrameType', base_config_1.TYPE],
|
|
623
808
|
['ReadableStreamReaderMode', base_config_1.TYPE],
|
|
624
809
|
['ReadableStreamType', base_config_1.TYPE],
|
|
625
810
|
['ReferrerPolicy', base_config_1.TYPE],
|
|
@@ -634,6 +819,7 @@ exports.webworker = {
|
|
|
634
819
|
['SecurityPolicyViolationEventDisposition', base_config_1.TYPE],
|
|
635
820
|
['ServiceWorkerState', base_config_1.TYPE],
|
|
636
821
|
['ServiceWorkerUpdateViaCache', base_config_1.TYPE],
|
|
822
|
+
['TaskPriority', base_config_1.TYPE],
|
|
637
823
|
['TransferFunction', base_config_1.TYPE],
|
|
638
824
|
['VideoColorPrimaries', base_config_1.TYPE],
|
|
639
825
|
['VideoEncoderBitrateMode', base_config_1.TYPE],
|
|
@@ -646,5 +832,11 @@ exports.webworker = {
|
|
|
646
832
|
['WorkerType', base_config_1.TYPE],
|
|
647
833
|
['WriteCommandType', base_config_1.TYPE],
|
|
648
834
|
['XMLHttpRequestResponseType', base_config_1.TYPE],
|
|
835
|
+
['FormDataIterator', base_config_1.TYPE],
|
|
836
|
+
['HeadersIterator', base_config_1.TYPE],
|
|
837
|
+
['StylePropertyMapReadOnlyIterator', base_config_1.TYPE],
|
|
838
|
+
['URLSearchParamsIterator', base_config_1.TYPE],
|
|
839
|
+
['FileSystemDirectoryHandleAsyncIterator', base_config_1.TYPE],
|
|
840
|
+
['ReadableStreamAsyncIterator', base_config_1.TYPE],
|
|
649
841
|
],
|
|
650
842
|
};
|