@swc/core 1.2.107 → 1.2.108
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/README.md +1 -1
- package/crates/rplugin/README.md +6 -0
- package/crates/swc/src/config/array.json +29 -0
- package/crates/swc/src/config/issue-1532.json +11 -0
- package/crates/swc/src/config/object.json +9 -0
- package/crates/swc_atoms/words.txt +676 -0
- package/crates/swc_babel_ast/README.md +3 -0
- package/crates/swc_babel_compat/README.md +10 -0
- package/crates/swc_babel_visit/README.md +24 -0
- package/crates/swc_bundler/README.md +13 -0
- package/crates/swc_bundler/assets/a.js +7 -0
- package/crates/swc_bundler/assets/main.js +3 -0
- package/crates/swc_ecma_minifier/.eslintrc +47 -0
- package/crates/swc_ecma_minifier/README.md +41 -0
- package/crates/swc_ecma_minifier/package.json +21 -0
- package/crates/swc_ecma_minifier/src/lists/domprops.json +7771 -0
- package/crates/swc_ecma_minifier/src/lists/jsprops.json +317 -0
- package/crates/swc_ecma_parser/colors.js +68 -0
- package/crates/swc_ecma_preset_env/package.json +8 -0
- package/crates/swc_ecma_preset_env/src/corejs2/builtin.json +1660 -0
- package/crates/swc_ecma_preset_env/src/corejs3/compat.json +3096 -0
- package/crates/swc_ecma_preset_env/src/corejs3/entries.json +8321 -0
- package/crates/swc_ecma_preset_env/src/corejs3/modules-by-versions.json +350 -0
- package/crates/swc_ecma_preset_env/src/query.js +27 -0
- package/crates/swc_ecma_preset_env/src/transform_data.json +449 -0
- package/crates/swc_ecma_preset_env/src/transform_data_bugfixes.json +79 -0
- package/crates/swc_ecma_transforms/package.json +9 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_apply_decorated_descriptor.js +24 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_array_with_holes.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_array_without_holes.js +9 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_assert_this_initialized.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_async_generator.js +96 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_async_generator_delegate.js +51 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_async_iterator.js +17 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_async_to_generator.js +35 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_await_async_generator.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_await_value.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_call_check.js +5 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_check_private_static_access.js +1 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_name_tdz_error.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_private_field_destructure.js +25 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_private_field_get.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_private_field_loose_base.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_private_field_set.js +14 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_private_method_get.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_private_method_set.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_static_private_field_spec_get.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_static_private_field_spec_set.js +12 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_class_static_private_method_get.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_construct.js +29 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_create_class.js +15 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_create_super.js +14 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_decorate.js +420 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_defaults.js +14 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_define_enumerable_properties.js +22 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_define_property.js +14 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_extends.js +17 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_get.js +19 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_get_prototype_of.js +6 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_inherits.js +14 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_inherits_loose.js +5 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_initializer_define_property.js +9 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_initializer_warning_helper.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_instanceof.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_interop_require_default.js +5 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_interop_require_wildcard.js +24 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_is_native_function.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_is_native_reflect_construct.js +11 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_iterable_to_array.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_iterable_to_array_limit.js +25 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_iterable_to_array_limit_loose.js +11 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_jsx.js +47 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_new_arrow_check.js +5 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_non_iterable_rest.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_non_iterable_spread.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_object_spread.js +18 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_object_without_properties.js +18 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_object_without_properties_loose.js +14 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_possible_constructor_return.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_read_only_error.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_set.js +48 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_set_prototype_of.js +8 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_skip_first_generator_next.js +7 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_sliced_to_array.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_sliced_to_array_loose.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_super_prop_base.js +8 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_tagged_template_literal.js +11 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_tagged_template_literal_loose.js +8 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_throw.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_to_array.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_to_consumable_array.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_to_primitive.js +12 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_to_property_key.js +4 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_type_of.js +3 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_wrap_async_generator.js +5 -0
- package/crates/swc_ecma_transforms_base/src/helpers/_wrap_native_super.js +33 -0
- package/{plugin → crates/swc_plugin}/README.md +0 -0
- package/crates/testing_macros/README.md +3 -0
- package/crates/wasm/__tests__/error.js +11 -0
- package/crates/wasm/__tests__/simple.js +33 -0
- package/crates/wasm/example/index.js +47 -0
- package/crates/wasm/example/package.json +15 -0
- package/crates/wasm/example/readme.txt +21 -0
- package/crates/wasm/example/webpack.config.js +10 -0
- package/crates/wasm/package.json +5 -0
- package/cspell.json +1 -0
- package/package.json +14 -13
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</a>
|
|
23
23
|
</p>
|
|
24
24
|
|
|
25
|
-
swc is a super-fast typescript / javascript compiler written in rust. It's a library for rust and javascript at the same time. If you are using swc from rust, see [rustdoc](https://rustdoc.swc.rs/swc/) and for most users, your entrypoint for using library will be [parser](https://rustdoc.swc.rs/swc_ecma_parser/).
|
|
25
|
+
swc (stands for `speedy web compiler`) is a super-fast typescript / javascript compiler written in rust. It's a library for rust and javascript at the same time. If you are using swc from rust, see [rustdoc](https://rustdoc.swc.rs/swc/) and for most users, your entrypoint for using library will be [parser](https://rustdoc.swc.rs/swc_ecma_parser/).
|
|
26
26
|
|
|
27
27
|
If you are using swc from javascript, please refer to [docs on the website](https://swc.rs/docs/installation/).
|
|
28
28
|
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"test": "\\.ts",
|
|
4
|
+
"jsc": {
|
|
5
|
+
"parser": {
|
|
6
|
+
"syntax": "typescript",
|
|
7
|
+
"tsx": false,
|
|
8
|
+
"decorators": false
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"test": "\\.js",
|
|
14
|
+
"jsc": {
|
|
15
|
+
"parser": {
|
|
16
|
+
"syntax": "ecmascript",
|
|
17
|
+
"jsx": false,
|
|
18
|
+
"dynamicImport": false,
|
|
19
|
+
"numericSeparator": false,
|
|
20
|
+
"classPrivateProperty": false,
|
|
21
|
+
"privateMethod": false,
|
|
22
|
+
"classProperty": false,
|
|
23
|
+
"functionBind": false,
|
|
24
|
+
"decorators": false,
|
|
25
|
+
"decoratorsBeforeExport": false
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
]
|
|
@@ -0,0 +1,676 @@
|
|
|
1
|
+
AbortController
|
|
2
|
+
AbortSignal
|
|
3
|
+
AnalyserNode
|
|
4
|
+
Animation
|
|
5
|
+
AnimationEffectReadOnly
|
|
6
|
+
AnimationEffectTiming
|
|
7
|
+
AnimationEffectTimingReadOnly
|
|
8
|
+
AnimationEvent
|
|
9
|
+
AnimationPlaybackEvent
|
|
10
|
+
AnimationTimeline
|
|
11
|
+
ApplicationCache
|
|
12
|
+
ApplicationCacheErrorEvent
|
|
13
|
+
Array
|
|
14
|
+
ArrayBuffer
|
|
15
|
+
Atomics
|
|
16
|
+
Attr
|
|
17
|
+
Audio
|
|
18
|
+
AudioBuffer
|
|
19
|
+
AudioBufferSourceNode
|
|
20
|
+
AudioContext
|
|
21
|
+
AudioDestinationNode
|
|
22
|
+
AudioListener
|
|
23
|
+
AudioNode
|
|
24
|
+
AudioParam
|
|
25
|
+
AudioProcessingEvent
|
|
26
|
+
AudioScheduledSourceNode
|
|
27
|
+
AudioWorkletGlobalScope
|
|
28
|
+
AudioWorkletNode
|
|
29
|
+
AudioWorkletProcessor
|
|
30
|
+
BarProp
|
|
31
|
+
BaseAudioContext
|
|
32
|
+
BatteryManager
|
|
33
|
+
BeforeUnloadEvent
|
|
34
|
+
BigInt
|
|
35
|
+
BigInt64Array
|
|
36
|
+
BigUint64Array
|
|
37
|
+
BiquadFilterNode
|
|
38
|
+
Blob
|
|
39
|
+
BlobEvent
|
|
40
|
+
Boolean
|
|
41
|
+
Bottom line
|
|
42
|
+
BroadcastChannel
|
|
43
|
+
BudgetService
|
|
44
|
+
ByteLengthQueuingStrategy
|
|
45
|
+
CSS
|
|
46
|
+
CSSConditionRule
|
|
47
|
+
CSSFontFaceRule
|
|
48
|
+
CSSGroupingRule
|
|
49
|
+
CSSImportRule
|
|
50
|
+
CSSKeyframeRule
|
|
51
|
+
CSSKeyframesRule
|
|
52
|
+
CSSMediaRule
|
|
53
|
+
CSSNamespaceRule
|
|
54
|
+
CSSPageRule
|
|
55
|
+
CSSRule
|
|
56
|
+
CSSRuleList
|
|
57
|
+
CSSStyleDeclaration
|
|
58
|
+
CSSStyleRule
|
|
59
|
+
CSSStyleSheet
|
|
60
|
+
CSSSupportsRule
|
|
61
|
+
Cache
|
|
62
|
+
CacheStorage
|
|
63
|
+
CanvasCaptureMediaStreamTrack
|
|
64
|
+
CanvasGradient
|
|
65
|
+
CanvasPattern
|
|
66
|
+
CanvasRenderingContext2D
|
|
67
|
+
ChannelMergerNode
|
|
68
|
+
ChannelSplitterNode
|
|
69
|
+
CharacterData
|
|
70
|
+
ClipboardEvent
|
|
71
|
+
CloseEvent
|
|
72
|
+
Comment
|
|
73
|
+
CompositionEvent
|
|
74
|
+
ConstantSourceNode
|
|
75
|
+
ConvolverNode
|
|
76
|
+
CountQueuingStrategy
|
|
77
|
+
Credential
|
|
78
|
+
CredentialsContainer
|
|
79
|
+
Crypto
|
|
80
|
+
CryptoKey
|
|
81
|
+
CustomElementRegistry
|
|
82
|
+
CustomEvent
|
|
83
|
+
DOMError
|
|
84
|
+
DOMException
|
|
85
|
+
DOMImplementation
|
|
86
|
+
DOMMatrix
|
|
87
|
+
DOMMatrixReadOnly
|
|
88
|
+
DOMParser
|
|
89
|
+
DOMPoint
|
|
90
|
+
DOMPointReadOnly
|
|
91
|
+
DOMQuad
|
|
92
|
+
DOMRect
|
|
93
|
+
DOMRectReadOnly
|
|
94
|
+
DOMStringList
|
|
95
|
+
DOMStringMap
|
|
96
|
+
DOMTokenList
|
|
97
|
+
DataTransfer
|
|
98
|
+
DataTransferItem
|
|
99
|
+
DataTransferItemList
|
|
100
|
+
DataView
|
|
101
|
+
Date
|
|
102
|
+
DelayNode
|
|
103
|
+
DeviceMotionEvent
|
|
104
|
+
DeviceOrientationEvent
|
|
105
|
+
Document
|
|
106
|
+
DocumentFragment
|
|
107
|
+
DocumentType
|
|
108
|
+
DragEvent
|
|
109
|
+
DynamicsCompressorNode
|
|
110
|
+
Element
|
|
111
|
+
Error
|
|
112
|
+
ErrorEvent
|
|
113
|
+
EvalError
|
|
114
|
+
Event
|
|
115
|
+
EventSource
|
|
116
|
+
EventTarget
|
|
117
|
+
Exclude
|
|
118
|
+
Extract
|
|
119
|
+
File
|
|
120
|
+
FileList
|
|
121
|
+
FileReader
|
|
122
|
+
Float32Array
|
|
123
|
+
Float64Array
|
|
124
|
+
FocusEvent
|
|
125
|
+
FontFace
|
|
126
|
+
FontFaceSetLoadEvent
|
|
127
|
+
FormData
|
|
128
|
+
Function
|
|
129
|
+
GainNode
|
|
130
|
+
Gamepad
|
|
131
|
+
GamepadButton
|
|
132
|
+
GamepadEvent
|
|
133
|
+
HTMLAllCollection
|
|
134
|
+
HTMLAnchorElement
|
|
135
|
+
HTMLAreaElement
|
|
136
|
+
HTMLAudioElement
|
|
137
|
+
HTMLBRElement
|
|
138
|
+
HTMLBaseElement
|
|
139
|
+
HTMLBodyElement
|
|
140
|
+
HTMLButtonElement
|
|
141
|
+
HTMLCanvasElement
|
|
142
|
+
HTMLCollection
|
|
143
|
+
HTMLContentElement
|
|
144
|
+
HTMLDListElement
|
|
145
|
+
HTMLDataElement
|
|
146
|
+
HTMLDataListElement
|
|
147
|
+
HTMLDetailsElement
|
|
148
|
+
HTMLDialogElement
|
|
149
|
+
HTMLDirectoryElement
|
|
150
|
+
HTMLDivElement
|
|
151
|
+
HTMLDocument
|
|
152
|
+
HTMLElement
|
|
153
|
+
HTMLEmbedElement
|
|
154
|
+
HTMLFieldSetElement
|
|
155
|
+
HTMLFontElement
|
|
156
|
+
HTMLFormControlsCollection
|
|
157
|
+
HTMLFormElement
|
|
158
|
+
HTMLFrameElement
|
|
159
|
+
HTMLFrameSetElement
|
|
160
|
+
HTMLHRElement
|
|
161
|
+
HTMLHeadElement
|
|
162
|
+
HTMLHeadingElement
|
|
163
|
+
HTMLHtmlElement
|
|
164
|
+
HTMLIFrameElement
|
|
165
|
+
HTMLImageElement
|
|
166
|
+
HTMLInputElement
|
|
167
|
+
HTMLLIElement
|
|
168
|
+
HTMLLabelElement
|
|
169
|
+
HTMLLegendElement
|
|
170
|
+
HTMLLinkElement
|
|
171
|
+
HTMLMapElement
|
|
172
|
+
HTMLMarqueeElement
|
|
173
|
+
HTMLMediaElement
|
|
174
|
+
HTMLMenuElement
|
|
175
|
+
HTMLMetaElement
|
|
176
|
+
HTMLMeterElement
|
|
177
|
+
HTMLModElement
|
|
178
|
+
HTMLOListElement
|
|
179
|
+
HTMLObjectElement
|
|
180
|
+
HTMLOptGroupElement
|
|
181
|
+
HTMLOptionElement
|
|
182
|
+
HTMLOptionsCollection
|
|
183
|
+
HTMLOutputElement
|
|
184
|
+
HTMLParagraphElement
|
|
185
|
+
HTMLParamElement
|
|
186
|
+
HTMLPictureElement
|
|
187
|
+
HTMLPreElement
|
|
188
|
+
HTMLProgressElement
|
|
189
|
+
HTMLQuoteElement
|
|
190
|
+
HTMLScriptElement
|
|
191
|
+
HTMLSelectElement
|
|
192
|
+
HTMLShadowElement
|
|
193
|
+
HTMLSlotElement
|
|
194
|
+
HTMLSourceElement
|
|
195
|
+
HTMLSpanElement
|
|
196
|
+
HTMLStyleElement
|
|
197
|
+
HTMLTableCaptionElement
|
|
198
|
+
HTMLTableCellElement
|
|
199
|
+
HTMLTableColElement
|
|
200
|
+
HTMLTableElement
|
|
201
|
+
HTMLTableRowElement
|
|
202
|
+
HTMLTableSectionElement
|
|
203
|
+
HTMLTemplateElement
|
|
204
|
+
HTMLTextAreaElement
|
|
205
|
+
HTMLTimeElement
|
|
206
|
+
HTMLTitleElement
|
|
207
|
+
HTMLTrackElement
|
|
208
|
+
HTMLUListElement
|
|
209
|
+
HTMLUnknownElement
|
|
210
|
+
HTMLVideoElement
|
|
211
|
+
HashChangeEvent
|
|
212
|
+
Headers
|
|
213
|
+
History
|
|
214
|
+
IDBCursor
|
|
215
|
+
IDBCursorWithValue
|
|
216
|
+
IDBDatabase
|
|
217
|
+
IDBFactory
|
|
218
|
+
IDBIndex
|
|
219
|
+
IDBKeyRange
|
|
220
|
+
IDBObjectStore
|
|
221
|
+
IDBOpenDBRequest
|
|
222
|
+
IDBRequest
|
|
223
|
+
IDBTransaction
|
|
224
|
+
IDBVersionChangeEvent
|
|
225
|
+
IIRFilterNode
|
|
226
|
+
IdleDeadline
|
|
227
|
+
Image
|
|
228
|
+
ImageBitmap
|
|
229
|
+
ImageBitmapRenderingContext
|
|
230
|
+
ImageCapture
|
|
231
|
+
ImageData
|
|
232
|
+
Infinity
|
|
233
|
+
InputEvent
|
|
234
|
+
Int16Array
|
|
235
|
+
Int32Array
|
|
236
|
+
Int8Array
|
|
237
|
+
IntersectionObserver
|
|
238
|
+
IntersectionObserverEntry
|
|
239
|
+
Intl
|
|
240
|
+
JSON
|
|
241
|
+
KeyboardEvent
|
|
242
|
+
KeyframeEffect
|
|
243
|
+
KeyframeEffectReadOnly
|
|
244
|
+
Location
|
|
245
|
+
MIDIAccess
|
|
246
|
+
MIDIConnectionEvent
|
|
247
|
+
MIDIInput
|
|
248
|
+
MIDIInputMap
|
|
249
|
+
MIDIMessageEvent
|
|
250
|
+
MIDIOutput
|
|
251
|
+
MIDIOutputMap
|
|
252
|
+
MIDIPort
|
|
253
|
+
Map
|
|
254
|
+
Math
|
|
255
|
+
MediaDeviceInfo
|
|
256
|
+
MediaDevices
|
|
257
|
+
MediaElementAudioSourceNode
|
|
258
|
+
MediaEncryptedEvent
|
|
259
|
+
MediaError
|
|
260
|
+
MediaKeyMessageEvent
|
|
261
|
+
MediaKeySession
|
|
262
|
+
MediaKeyStatusMap
|
|
263
|
+
MediaKeySystemAccess
|
|
264
|
+
MediaList
|
|
265
|
+
MediaQueryList
|
|
266
|
+
MediaQueryListEvent
|
|
267
|
+
MediaRecorder
|
|
268
|
+
MediaSettingsRange
|
|
269
|
+
MediaSource
|
|
270
|
+
MediaStream
|
|
271
|
+
MediaStreamAudioDestinationNode
|
|
272
|
+
MediaStreamAudioSourceNode
|
|
273
|
+
MediaStreamEvent
|
|
274
|
+
MediaStreamTrack
|
|
275
|
+
MediaStreamTrackEvent
|
|
276
|
+
MessageChannel
|
|
277
|
+
MessageEvent
|
|
278
|
+
MessagePort
|
|
279
|
+
MimeType
|
|
280
|
+
MimeTypeArray
|
|
281
|
+
MouseEvent
|
|
282
|
+
MutationEvent
|
|
283
|
+
MutationObserver
|
|
284
|
+
MutationRecord
|
|
285
|
+
NODE_ENV
|
|
286
|
+
NaN
|
|
287
|
+
NamedNodeMap
|
|
288
|
+
NavigationPreloadManager
|
|
289
|
+
Navigator
|
|
290
|
+
NetworkInformation
|
|
291
|
+
Node
|
|
292
|
+
NodeFilter
|
|
293
|
+
NodeIterator
|
|
294
|
+
NodeList
|
|
295
|
+
NonNullable
|
|
296
|
+
Notification
|
|
297
|
+
Number
|
|
298
|
+
Object
|
|
299
|
+
OfflineAudioCompletionEvent
|
|
300
|
+
OfflineAudioContext
|
|
301
|
+
OffscreenCanvas
|
|
302
|
+
Option
|
|
303
|
+
OscillatorNode
|
|
304
|
+
PageTransitionEvent
|
|
305
|
+
PannerNode
|
|
306
|
+
Partial
|
|
307
|
+
Path2D
|
|
308
|
+
PaymentAddress
|
|
309
|
+
PaymentRequest
|
|
310
|
+
PaymentRequestUpdateEvent
|
|
311
|
+
PaymentResponse
|
|
312
|
+
Performance
|
|
313
|
+
PerformanceEntry
|
|
314
|
+
PerformanceLongTaskTiming
|
|
315
|
+
PerformanceMark
|
|
316
|
+
PerformanceMeasure
|
|
317
|
+
PerformanceNavigation
|
|
318
|
+
PerformanceNavigationTiming
|
|
319
|
+
PerformanceObserver
|
|
320
|
+
PerformanceObserverEntryList
|
|
321
|
+
PerformancePaintTiming
|
|
322
|
+
PerformanceResourceTiming
|
|
323
|
+
PerformanceTiming
|
|
324
|
+
PeriodicWave
|
|
325
|
+
PermissionStatus
|
|
326
|
+
Permissions
|
|
327
|
+
PhotoCapabilities
|
|
328
|
+
Pick
|
|
329
|
+
Plugin
|
|
330
|
+
PluginArray
|
|
331
|
+
PointerEvent
|
|
332
|
+
PopStateEvent
|
|
333
|
+
Presentation
|
|
334
|
+
PresentationAvailability
|
|
335
|
+
PresentationConnection
|
|
336
|
+
PresentationConnectionAvailableEvent
|
|
337
|
+
PresentationConnectionCloseEvent
|
|
338
|
+
PresentationConnectionList
|
|
339
|
+
PresentationReceiver
|
|
340
|
+
PresentationRequest
|
|
341
|
+
ProcessingInstruction
|
|
342
|
+
ProgressEvent
|
|
343
|
+
Promise
|
|
344
|
+
PromiseRejectionEvent
|
|
345
|
+
Proxy
|
|
346
|
+
PushManager
|
|
347
|
+
PushSubscription
|
|
348
|
+
PushSubscriptionOptions
|
|
349
|
+
RTCCertificate
|
|
350
|
+
RTCDataChannel
|
|
351
|
+
RTCDataChannelEvent
|
|
352
|
+
RTCDtlsTransport
|
|
353
|
+
RTCIceCandidate
|
|
354
|
+
RTCIceGatherer
|
|
355
|
+
RTCIceTransport
|
|
356
|
+
RTCPeerConnection
|
|
357
|
+
RTCPeerConnectionIceEvent
|
|
358
|
+
RTCRtpContributingSource
|
|
359
|
+
RTCRtpReceiver
|
|
360
|
+
RTCRtpSender
|
|
361
|
+
RTCSctpTransport
|
|
362
|
+
RTCSessionDescription
|
|
363
|
+
RTCStatsReport
|
|
364
|
+
RTCTrackEvent
|
|
365
|
+
RadioNodeList
|
|
366
|
+
Range
|
|
367
|
+
RangeError
|
|
368
|
+
React
|
|
369
|
+
ReadableStream
|
|
370
|
+
Readonly
|
|
371
|
+
ReadonlyArray
|
|
372
|
+
Record
|
|
373
|
+
ReferenceError
|
|
374
|
+
Reflect
|
|
375
|
+
RegExp
|
|
376
|
+
RemotePlayback
|
|
377
|
+
Request
|
|
378
|
+
Required
|
|
379
|
+
ResizeObserver
|
|
380
|
+
ResizeObserverEntry
|
|
381
|
+
Response
|
|
382
|
+
ReturnType
|
|
383
|
+
SVGAElement
|
|
384
|
+
SVGAngle
|
|
385
|
+
SVGAnimateElement
|
|
386
|
+
SVGAnimateMotionElement
|
|
387
|
+
SVGAnimateTransformElement
|
|
388
|
+
SVGAnimatedAngle
|
|
389
|
+
SVGAnimatedBoolean
|
|
390
|
+
SVGAnimatedEnumeration
|
|
391
|
+
SVGAnimatedInteger
|
|
392
|
+
SVGAnimatedLength
|
|
393
|
+
SVGAnimatedLengthList
|
|
394
|
+
SVGAnimatedNumber
|
|
395
|
+
SVGAnimatedNumberList
|
|
396
|
+
SVGAnimatedPreserveAspectRatio
|
|
397
|
+
SVGAnimatedRect
|
|
398
|
+
SVGAnimatedString
|
|
399
|
+
SVGAnimatedTransformList
|
|
400
|
+
SVGAnimationElement
|
|
401
|
+
SVGCircleElement
|
|
402
|
+
SVGClipPathElement
|
|
403
|
+
SVGComponentTransferFunctionElement
|
|
404
|
+
SVGDefsElement
|
|
405
|
+
SVGDescElement
|
|
406
|
+
SVGDiscardElement
|
|
407
|
+
SVGElement
|
|
408
|
+
SVGEllipseElement
|
|
409
|
+
SVGFEBlendElement
|
|
410
|
+
SVGFEColorMatrixElement
|
|
411
|
+
SVGFEComponentTransferElement
|
|
412
|
+
SVGFECompositeElement
|
|
413
|
+
SVGFEConvolveMatrixElement
|
|
414
|
+
SVGFEDiffuseLightingElement
|
|
415
|
+
SVGFEDisplacementMapElement
|
|
416
|
+
SVGFEDistantLightElement
|
|
417
|
+
SVGFEDropShadowElement
|
|
418
|
+
SVGFEFloodElement
|
|
419
|
+
SVGFEFuncAElement
|
|
420
|
+
SVGFEFuncBElement
|
|
421
|
+
SVGFEFuncGElement
|
|
422
|
+
SVGFEFuncRElement
|
|
423
|
+
SVGFEGaussianBlurElement
|
|
424
|
+
SVGFEImageElement
|
|
425
|
+
SVGFEMergeElement
|
|
426
|
+
SVGFEMergeNodeElement
|
|
427
|
+
SVGFEMorphologyElement
|
|
428
|
+
SVGFEOffsetElement
|
|
429
|
+
SVGFEPointLightElement
|
|
430
|
+
SVGFESpecularLightingElement
|
|
431
|
+
SVGFESpotLightElement
|
|
432
|
+
SVGFETileElement
|
|
433
|
+
SVGFETurbulenceElement
|
|
434
|
+
SVGFilterElement
|
|
435
|
+
SVGForeignObjectElement
|
|
436
|
+
SVGGElement
|
|
437
|
+
SVGGeometryElement
|
|
438
|
+
SVGGradientElement
|
|
439
|
+
SVGGraphicsElement
|
|
440
|
+
SVGImageElement
|
|
441
|
+
SVGLength
|
|
442
|
+
SVGLengthList
|
|
443
|
+
SVGLineElement
|
|
444
|
+
SVGLinearGradientElement
|
|
445
|
+
SVGMPathElement
|
|
446
|
+
SVGMarkerElement
|
|
447
|
+
SVGMaskElement
|
|
448
|
+
SVGMatrix
|
|
449
|
+
SVGMetadataElement
|
|
450
|
+
SVGNumber
|
|
451
|
+
SVGNumberList
|
|
452
|
+
SVGPathElement
|
|
453
|
+
SVGPatternElement
|
|
454
|
+
SVGPoint
|
|
455
|
+
SVGPointList
|
|
456
|
+
SVGPolygonElement
|
|
457
|
+
SVGPolylineElement
|
|
458
|
+
SVGPreserveAspectRatio
|
|
459
|
+
SVGRadialGradientElement
|
|
460
|
+
SVGRect
|
|
461
|
+
SVGRectElement
|
|
462
|
+
SVGSVGElement
|
|
463
|
+
SVGScriptElement
|
|
464
|
+
SVGSetElement
|
|
465
|
+
SVGStopElement
|
|
466
|
+
SVGStringList
|
|
467
|
+
SVGStyleElement
|
|
468
|
+
SVGSwitchElement
|
|
469
|
+
SVGSymbolElement
|
|
470
|
+
SVGTSpanElement
|
|
471
|
+
SVGTextContentElement
|
|
472
|
+
SVGTextElement
|
|
473
|
+
SVGTextPathElement
|
|
474
|
+
SVGTextPositioningElement
|
|
475
|
+
SVGTitleElement
|
|
476
|
+
SVGTransform
|
|
477
|
+
SVGTransformList
|
|
478
|
+
SVGUnitTypes
|
|
479
|
+
SVGUseElement
|
|
480
|
+
SVGViewElement
|
|
481
|
+
Screen
|
|
482
|
+
ScreenOrientation
|
|
483
|
+
ScriptProcessorNode
|
|
484
|
+
SecurityPolicyViolationEvent
|
|
485
|
+
Selection
|
|
486
|
+
ServiceWorker
|
|
487
|
+
ServiceWorkerContainer
|
|
488
|
+
ServiceWorkerRegistration
|
|
489
|
+
Set
|
|
490
|
+
ShadowRoot
|
|
491
|
+
SharedArrayBuffer
|
|
492
|
+
SharedWorker
|
|
493
|
+
SourceBuffer
|
|
494
|
+
SourceBufferList
|
|
495
|
+
SpeechSynthesisEvent
|
|
496
|
+
SpeechSynthesisUtterance
|
|
497
|
+
StaticRange
|
|
498
|
+
StereoPannerNode
|
|
499
|
+
Storage
|
|
500
|
+
StorageEvent
|
|
501
|
+
StorageManager
|
|
502
|
+
String
|
|
503
|
+
StyleSheet
|
|
504
|
+
StyleSheetList
|
|
505
|
+
SubtleCrypto
|
|
506
|
+
Symbol
|
|
507
|
+
SyntaxError
|
|
508
|
+
TaskAttributionTiming
|
|
509
|
+
Text
|
|
510
|
+
TextDecoder
|
|
511
|
+
TextEncoder
|
|
512
|
+
TextEvent
|
|
513
|
+
TextMetrics
|
|
514
|
+
TextTrack
|
|
515
|
+
TextTrackCue
|
|
516
|
+
TextTrackCueList
|
|
517
|
+
TextTrackList
|
|
518
|
+
TimeRanges
|
|
519
|
+
Touch
|
|
520
|
+
TouchEvent
|
|
521
|
+
TouchList
|
|
522
|
+
TrackEvent
|
|
523
|
+
TransitionEvent
|
|
524
|
+
TreeWalker
|
|
525
|
+
TypeError
|
|
526
|
+
UIEvent
|
|
527
|
+
URIError
|
|
528
|
+
URL
|
|
529
|
+
URLSearchParams
|
|
530
|
+
Uint16Array
|
|
531
|
+
Uint32Array
|
|
532
|
+
Uint8Array
|
|
533
|
+
Uint8ClampedArray
|
|
534
|
+
VTTCue
|
|
535
|
+
ValidityState
|
|
536
|
+
VisualViewport
|
|
537
|
+
WaveShaperNode
|
|
538
|
+
WeakMap
|
|
539
|
+
WeakSet
|
|
540
|
+
WebAssembly
|
|
541
|
+
WebGL2RenderingContext
|
|
542
|
+
WebGLActiveInfo
|
|
543
|
+
WebGLBuffer
|
|
544
|
+
WebGLContextEvent
|
|
545
|
+
WebGLFramebuffer
|
|
546
|
+
WebGLProgram
|
|
547
|
+
WebGLQuery
|
|
548
|
+
WebGLRenderbuffer
|
|
549
|
+
WebGLRenderingContext
|
|
550
|
+
WebGLSampler
|
|
551
|
+
WebGLShader
|
|
552
|
+
WebGLShaderPrecisionFormat
|
|
553
|
+
WebGLSync
|
|
554
|
+
WebGLTexture
|
|
555
|
+
WebGLTransformFeedback
|
|
556
|
+
WebGLUniformLocation
|
|
557
|
+
WebGLVertexArrayObject
|
|
558
|
+
WebSocket
|
|
559
|
+
WheelEvent
|
|
560
|
+
Window
|
|
561
|
+
Worker
|
|
562
|
+
WritableStream
|
|
563
|
+
XMLDocument
|
|
564
|
+
XMLHttpRequest
|
|
565
|
+
XMLHttpRequestEventTarget
|
|
566
|
+
XMLHttpRequestUpload
|
|
567
|
+
XMLSerializer
|
|
568
|
+
XPathEvaluator
|
|
569
|
+
XPathExpression
|
|
570
|
+
XPathResult
|
|
571
|
+
XSLTProcessor
|
|
572
|
+
_defineProperty
|
|
573
|
+
_extends
|
|
574
|
+
_toConsumableArray
|
|
575
|
+
abstract
|
|
576
|
+
and
|
|
577
|
+
any
|
|
578
|
+
apply
|
|
579
|
+
arguments
|
|
580
|
+
as
|
|
581
|
+
assert
|
|
582
|
+
asserts
|
|
583
|
+
async
|
|
584
|
+
await
|
|
585
|
+
bigint
|
|
586
|
+
boolean
|
|
587
|
+
break
|
|
588
|
+
call
|
|
589
|
+
case
|
|
590
|
+
catch
|
|
591
|
+
class
|
|
592
|
+
concat
|
|
593
|
+
const
|
|
594
|
+
constructor
|
|
595
|
+
continue
|
|
596
|
+
createClass
|
|
597
|
+
createReactClass
|
|
598
|
+
debugger
|
|
599
|
+
declare
|
|
600
|
+
default
|
|
601
|
+
delete
|
|
602
|
+
displayName
|
|
603
|
+
do
|
|
604
|
+
else
|
|
605
|
+
enum
|
|
606
|
+
env
|
|
607
|
+
eval
|
|
608
|
+
export
|
|
609
|
+
extends
|
|
610
|
+
false
|
|
611
|
+
finally
|
|
612
|
+
for
|
|
613
|
+
from
|
|
614
|
+
function
|
|
615
|
+
get
|
|
616
|
+
global
|
|
617
|
+
if
|
|
618
|
+
implements
|
|
619
|
+
import
|
|
620
|
+
important
|
|
621
|
+
in
|
|
622
|
+
infer
|
|
623
|
+
instanceof
|
|
624
|
+
interface
|
|
625
|
+
intrinsic
|
|
626
|
+
is
|
|
627
|
+
iterator
|
|
628
|
+
key
|
|
629
|
+
keyof
|
|
630
|
+
length
|
|
631
|
+
let
|
|
632
|
+
main
|
|
633
|
+
meta
|
|
634
|
+
module
|
|
635
|
+
namespace
|
|
636
|
+
never
|
|
637
|
+
new
|
|
638
|
+
not
|
|
639
|
+
null
|
|
640
|
+
number
|
|
641
|
+
object
|
|
642
|
+
of
|
|
643
|
+
only
|
|
644
|
+
or
|
|
645
|
+
override
|
|
646
|
+
package
|
|
647
|
+
private
|
|
648
|
+
process
|
|
649
|
+
protected
|
|
650
|
+
public
|
|
651
|
+
readonly
|
|
652
|
+
require
|
|
653
|
+
return
|
|
654
|
+
set
|
|
655
|
+
static
|
|
656
|
+
string
|
|
657
|
+
super
|
|
658
|
+
switch
|
|
659
|
+
symbol
|
|
660
|
+
target
|
|
661
|
+
this
|
|
662
|
+
throw
|
|
663
|
+
toString
|
|
664
|
+
true
|
|
665
|
+
try
|
|
666
|
+
type
|
|
667
|
+
typeof
|
|
668
|
+
undefined
|
|
669
|
+
unique
|
|
670
|
+
unknown
|
|
671
|
+
url
|
|
672
|
+
var
|
|
673
|
+
void
|
|
674
|
+
while
|
|
675
|
+
with
|
|
676
|
+
yield
|