@types/web 0.0.251 → 0.0.253

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/ts5.6/index.d.ts CHANGED
@@ -749,6 +749,10 @@ interface FullscreenOptions {
749
749
  navigationUI?: FullscreenNavigationUI;
750
750
  }
751
751
 
752
+ interface GPUPipelineErrorInit {
753
+ reason: GPUPipelineErrorReason;
754
+ }
755
+
752
756
  interface GainOptions extends AudioNodeOptions {
753
757
  gain?: number;
754
758
  }
@@ -3121,7 +3125,7 @@ interface Animation extends EventTarget {
3121
3125
  */
3122
3126
  reverse(): void;
3123
3127
  /**
3124
- * The **`updatePlaybackRate()`** method of the Web Animations API's synchronizing its playback position.
3128
+ * The **`updatePlaybackRate()`** method of the Web Animations API's Animation Interface sets the speed of an animation after first synchronizing its playback position.
3125
3129
  *
3126
3130
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/updatePlaybackRate)
3127
3131
  */
@@ -3342,7 +3346,7 @@ interface AudioBuffer {
3342
3346
  */
3343
3347
  readonly sampleRate: number;
3344
3348
  /**
3345
- * The **`copyFromChannel()`** method of the channel of the `AudioBuffer` to a specified ```js-nolint copyFromChannel(destination, channelNumber, startInChannel) ``` - `destination` - : A Float32Array to copy the channel's samples to.
3349
+ * The **`copyFromChannel()`** method of the AudioBuffer interface copies the audio sample data from the specified channel of the `AudioBuffer` to a specified Float32Array.
3346
3350
  *
3347
3351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/copyFromChannel)
3348
3352
  */
@@ -3379,7 +3383,7 @@ interface AudioBufferSourceNode extends AudioScheduledSourceNode {
3379
3383
  */
3380
3384
  buffer: AudioBuffer | null;
3381
3385
  /**
3382
- * The **`detune`** property of the representing detuning of oscillation in cents.
3386
+ * The **`detune`** property of the AudioBufferSourceNode interface is a k-rate AudioParam representing detuning of oscillation in cents.
3383
3387
  *
3384
3388
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/detune)
3385
3389
  */
@@ -3432,7 +3436,7 @@ declare var AudioBufferSourceNode: {
3432
3436
  */
3433
3437
  interface AudioContext extends BaseAudioContext {
3434
3438
  /**
3435
- * The **`baseLatency`** read-only property of the seconds of processing latency incurred by the `AudioContext` passing an audio buffer from the AudioDestinationNode — i.e., the end of the audio graph — into the host system's audio subsystem ready for playing.
3439
+ * The **`baseLatency`** read-only property of the AudioContext interface returns a double that represents the number of seconds of processing latency incurred by the `AudioContext` passing an audio buffer from the AudioDestinationNode — i.e., the end of the audio graph — into the host system's audio subsystem ready for playing.
3436
3440
  *
3437
3441
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/baseLatency)
3438
3442
  */
@@ -3468,7 +3472,7 @@ interface AudioContext extends BaseAudioContext {
3468
3472
  */
3469
3473
  createMediaStreamSource(mediaStream: MediaStream): MediaStreamAudioSourceNode;
3470
3474
  /**
3471
- * The **`getOutputTimestamp()`** method of the containing two audio timestamp values relating to the current audio context.
3475
+ * The **`getOutputTimestamp()`** method of the AudioContext interface returns a new `AudioTimestamp` object containing two audio timestamp values relating to the current audio context.
3472
3476
  *
3473
3477
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/getOutputTimestamp)
3474
3478
  */
@@ -3838,7 +3842,7 @@ interface AudioNode extends EventTarget {
3838
3842
  */
3839
3843
  channelInterpretation: ChannelInterpretation;
3840
3844
  /**
3841
- * The read-only `context` property of the the node is participating in.
3845
+ * The read-only `context` property of the AudioNode interface returns the associated BaseAudioContext, that is the object representing the processing graph the node is participating in.
3842
3846
  *
3843
3847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/context)
3844
3848
  */
@@ -3856,7 +3860,7 @@ interface AudioNode extends EventTarget {
3856
3860
  */
3857
3861
  readonly numberOfOutputs: number;
3858
3862
  /**
3859
- * The `connect()` method of the AudioNode interface lets you connect one of the node's outputs to a target, which may be either another `AudioNode` (thereby directing the sound data to the specified node) or an change the value of that parameter over time.
3863
+ * The `connect()` method of the AudioNode interface lets you connect one of the node's outputs to a target, which may be either another `AudioNode` (thereby directing the sound data to the specified node) or an AudioParam, so that the node's output data is automatically used to change the value of that parameter over time.
3860
3864
  *
3861
3865
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/connect)
3862
3866
  */
@@ -3913,7 +3917,7 @@ interface AudioParam {
3913
3917
  */
3914
3918
  value: number;
3915
3919
  /**
3916
- * The **`cancelAndHoldAtTime()`** method of the `AudioParam` but holds its value at a given time until further changes are made using other methods.
3920
+ * The **`cancelAndHoldAtTime()`** method of the AudioParam interface cancels all scheduled future changes to the `AudioParam` but holds its value at a given time until further changes are made using other methods.
3917
3921
  *
3918
3922
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/cancelAndHoldAtTime)
3919
3923
  */
@@ -3937,19 +3941,19 @@ interface AudioParam {
3937
3941
  */
3938
3942
  linearRampToValueAtTime(value: number, endTime: number): AudioParam;
3939
3943
  /**
3940
- * The `setTargetAtTime()` method of the `AudioParam` value.
3944
+ * The `setTargetAtTime()` method of the AudioParam interface schedules the start of a gradual change to the `AudioParam` value.
3941
3945
  *
3942
3946
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setTargetAtTime)
3943
3947
  */
3944
3948
  setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam;
3945
3949
  /**
3946
- * The `setValueAtTime()` method of the `AudioParam` value at a precise time, as measured against ```js-nolint setValueAtTime(value, startTime) ``` - `value` - : A floating point number representing the value the AudioParam will change to at the given time.
3950
+ * The `setValueAtTime()` method of the AudioParam interface schedules an instant change to the `AudioParam` value at a precise time, as measured against BaseAudioContext/currentTime.
3947
3951
  *
3948
3952
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueAtTime)
3949
3953
  */
3950
3954
  setValueAtTime(value: number, startTime: number): AudioParam;
3951
3955
  /**
3952
- * The **`setValueCurveAtTime()`** method of the following a curve defined by a list of values.
3956
+ * The **`setValueCurveAtTime()`** method of the AudioParam interface schedules the parameter's value to change following a curve defined by a list of values.
3953
3957
  *
3954
3958
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime)
3955
3959
  */
@@ -4074,13 +4078,13 @@ interface AudioWorkletNode extends AudioNode {
4074
4078
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/processorerror_event) */
4075
4079
  onprocessorerror: ((this: AudioWorkletNode, ev: ErrorEvent) => any) | null;
4076
4080
  /**
4077
- * The read-only **`parameters`** property of the underlying AudioWorkletProcessor according to its getter.
4081
+ * The read-only **`parameters`** property of the AudioWorkletNode interface returns the associated AudioParamMap — that is, a `Map`-like collection of AudioParam objects.
4078
4082
  *
4079
4083
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/parameters)
4080
4084
  */
4081
4085
  readonly parameters: AudioParamMap;
4082
4086
  /**
4083
- * The read-only **`port`** property of the associated AudioWorkletProcessor.
4087
+ * The read-only **`port`** property of the AudioWorkletNode interface returns the associated MessagePort.
4084
4088
  *
4085
4089
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/port)
4086
4090
  */
@@ -4110,7 +4114,7 @@ interface AuthenticatorAssertionResponse extends AuthenticatorResponse {
4110
4114
  */
4111
4115
  readonly authenticatorData: ArrayBuffer;
4112
4116
  /**
4113
- * The **`signature`** read-only property of the object which is the signature of the authenticator for both the client data (AuthenticatorResponse.clientDataJSON).
4117
+ * The **`signature`** read-only property of the AuthenticatorAssertionResponse interface is an ArrayBuffer object which is the signature of the authenticator for both AuthenticatorAssertionResponse.authenticatorData and a SHA-256 hash of the client data (AuthenticatorResponse.clientDataJSON).
4114
4118
  *
4115
4119
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse/signature)
4116
4120
  */
@@ -4136,7 +4140,7 @@ declare var AuthenticatorAssertionResponse: {
4136
4140
  */
4137
4141
  interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
4138
4142
  /**
4139
- * The **`attestationObject`** property of the entire `attestationObject` with a private key that is stored in the authenticator when it is manufactured.
4143
+ * The **`attestationObject`** property of the AuthenticatorAttestationResponse interface returns an ArrayBuffer containing the new public key, as well as signature over the entire `attestationObject` with a private key that is stored in the authenticator when it is manufactured.
4140
4144
  *
4141
4145
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject)
4142
4146
  */
@@ -4180,7 +4184,7 @@ declare var AuthenticatorAttestationResponse: {
4180
4184
  */
4181
4185
  interface AuthenticatorResponse {
4182
4186
  /**
4183
- * The **`clientDataJSON`** property of the AuthenticatorResponse interface stores a JSON string in an An ArrayBuffer.
4187
+ * The **`clientDataJSON`** property of the AuthenticatorResponse interface stores a JSON string in an ArrayBuffer, representing the client data that was passed to CredentialsContainer.create() or CredentialsContainer.get().
4184
4188
  *
4185
4189
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorResponse/clientDataJSON)
4186
4190
  */
@@ -4222,7 +4226,7 @@ interface BaseAudioContextEventMap {
4222
4226
  */
4223
4227
  interface BaseAudioContext extends EventTarget {
4224
4228
  /**
4225
- * The `audioWorklet` read-only property of the processing.
4229
+ * The `audioWorklet` read-only property of the BaseAudioContext interface returns an instance of AudioWorklet that can be used for adding AudioWorkletProcessor-derived classes which implement custom audio processing.
4226
4230
  * Available only in secure contexts.
4227
4231
  *
4228
4232
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/audioWorklet)
@@ -4261,7 +4265,7 @@ interface BaseAudioContext extends EventTarget {
4261
4265
  */
4262
4266
  readonly state: AudioContextState;
4263
4267
  /**
4264
- * The `createAnalyser()` method of the can be used to expose audio time and frequency data and create data visualizations.
4268
+ * The `createAnalyser()` method of the BaseAudioContext interface creates an AnalyserNode, which can be used to expose audio time and frequency data and create data visualizations.
4265
4269
  *
4266
4270
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createAnalyser)
4267
4271
  */
@@ -4297,7 +4301,7 @@ interface BaseAudioContext extends EventTarget {
4297
4301
  */
4298
4302
  createChannelSplitter(numberOfOutputs?: number): ChannelSplitterNode;
4299
4303
  /**
4300
- * The **`createConstantSource()`** property of the BaseAudioContext interface creates a outputs a monaural (one-channel) sound signal whose samples all have the same value.
4304
+ * The **`createConstantSource()`** property of the BaseAudioContext interface creates a ConstantSourceNode object, which is an audio source that continuously outputs a monaural (one-channel) sound signal whose samples all have the same value.
4301
4305
  *
4302
4306
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createConstantSource)
4303
4307
  */
@@ -4309,7 +4313,7 @@ interface BaseAudioContext extends EventTarget {
4309
4313
  */
4310
4314
  createConvolver(): ConvolverNode;
4311
4315
  /**
4312
- * The `createDelay()` method of the which is used to delay the incoming audio signal by a certain amount of time.
4316
+ * The `createDelay()` method of the BaseAudioContext Interface is used to create a DelayNode, which is used to delay the incoming audio signal by a certain amount of time.
4313
4317
  *
4314
4318
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createDelay)
4315
4319
  */
@@ -4370,7 +4374,7 @@ interface BaseAudioContext extends EventTarget {
4370
4374
  */
4371
4375
  createWaveShaper(): WaveShaperNode;
4372
4376
  /**
4373
- * The `decodeAudioData()` method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an rate, then passed to a callback or promise.
4377
+ * The `decodeAudioData()` method of the BaseAudioContext Interface is used to asynchronously decode audio file data contained in an ArrayBuffer that is loaded from Window/fetch, XMLHttpRequest, or FileReader.
4374
4378
  *
4375
4379
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/decodeAudioData)
4376
4380
  */
@@ -4393,7 +4397,7 @@ declare var BaseAudioContext: {
4393
4397
  */
4394
4398
  interface BeforeUnloadEvent extends Event {
4395
4399
  /**
4396
- * The **`returnValue`** property of the `returnValue` is initialized to an empty string (`''`) value.
4400
+ * The **`returnValue`** property of the BeforeUnloadEvent interface, when set to a truthy value, triggers a browser-generated confirmation dialog asking users to confirm if they _really_ want to leave the page when they try to close or reload it, or navigate somewhere else.
4397
4401
  * @deprecated
4398
4402
  *
4399
4403
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)
@@ -4498,7 +4502,7 @@ interface Blob {
4498
4502
  */
4499
4503
  stream(): ReadableStream<Uint8Array>;
4500
4504
  /**
4501
- * The **`text()`** method of the string containing the contents of the blob, interpreted as UTF-8.
4505
+ * The **`text()`** method of the Blob interface returns a Promise that resolves with a string containing the contents of the blob, interpreted as UTF-8.
4502
4506
  *
4503
4507
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text)
4504
4508
  */
@@ -4639,7 +4643,7 @@ declare var CDATASection: {
4639
4643
  */
4640
4644
  interface CSSAnimation extends Animation {
4641
4645
  /**
4642
- * The **`animationName`** property of the specifies one or more keyframe at-rules which describe the animation applied to the element.
4646
+ * The **`animationName`** property of the CSSAnimation interface returns the animation-name.
4643
4647
  *
4644
4648
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSAnimation/animationName)
4645
4649
  */
@@ -4861,19 +4865,19 @@ declare var CSSFontPaletteValuesRule: {
4861
4865
  */
4862
4866
  interface CSSGroupingRule extends CSSRule {
4863
4867
  /**
4864
- * The **`cssRules`** property of the a collection of CSSRule objects.
4868
+ * The **`cssRules`** property of the CSSGroupingRule interface returns a CSSRuleList containing a collection of CSSRule objects.
4865
4869
  *
4866
4870
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/cssRules)
4867
4871
  */
4868
4872
  readonly cssRules: CSSRuleList;
4869
4873
  /**
4870
- * The **`deleteRule()`** method of the rules.
4874
+ * The **`deleteRule()`** method of the CSSGroupingRule interface removes a CSS rule from a list of child CSS rules.
4871
4875
  *
4872
4876
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/deleteRule)
4873
4877
  */
4874
4878
  deleteRule(index: number): void;
4875
4879
  /**
4876
- * The **`insertRule()`** method of the ```js-nolint insertRule(rule) insertRule(rule, index) ``` - `rule` - : A string - `index` MISSING: optional_inline] - : An optional index at which to insert the rule; defaults to 0.
4880
+ * The **`insertRule()`** method of the CSSGroupingRule interface adds a new CSS rule to a list of CSS rules.
4877
4881
  *
4878
4882
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/insertRule)
4879
4883
  */
@@ -4905,7 +4909,7 @@ declare var CSSImageValue: {
4905
4909
  */
4906
4910
  interface CSSImportRule extends CSSRule {
4907
4911
  /**
4908
- * The read-only **`href`** property of the The resolved URL will be the `href` attribute of the associated stylesheet.
4912
+ * The read-only **`href`** property of the CSSImportRule interface returns the URL specified by the @import at-rule.
4909
4913
  *
4910
4914
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/href)
4911
4915
  */
@@ -4917,14 +4921,14 @@ interface CSSImportRule extends CSSRule {
4917
4921
  */
4918
4922
  readonly layerName: string | null;
4919
4923
  /**
4920
- * The read-only **`media`** property of the containing the value of the `media` attribute of the associated stylesheet.
4924
+ * The read-only **`media`** property of the CSSImportRule interface returns a MediaList object, containing the value of the `media` attribute of the associated stylesheet.
4921
4925
  *
4922
4926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media)
4923
4927
  */
4924
4928
  get media(): MediaList;
4925
4929
  set media(mediaText: string);
4926
4930
  /**
4927
- * The read-only **`styleSheet`** property of the in the form of a CSSStyleSheet object.
4931
+ * The read-only **`styleSheet`** property of the CSSImportRule interface returns the CSS Stylesheet specified by the @import at-rule.
4928
4932
  *
4929
4933
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet)
4930
4934
  */
@@ -5025,7 +5029,7 @@ declare var CSSKeyframesRule: {
5025
5029
  */
5026
5030
  interface CSSKeywordValue extends CSSStyleValue {
5027
5031
  /**
5028
- * The **`value`** property of the `CSSKeywordValue`.
5032
+ * The **`value`** property of the CSSKeywordValue interface returns or sets the value of the `CSSKeywordValue`.
5029
5033
  *
5030
5034
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value)
5031
5035
  */
@@ -5093,7 +5097,7 @@ declare var CSSMathClamp: {
5093
5097
  */
5094
5098
  interface CSSMathInvert extends CSSMathValue {
5095
5099
  /**
5096
- * The CSSMathInvert.value read-only property of the A CSSNumericValue.
5100
+ * The CSSMathInvert.value read-only property of the CSSMathInvert interface returns a CSSNumericValue object.
5097
5101
  *
5098
5102
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value)
5099
5103
  */
@@ -5112,7 +5116,7 @@ declare var CSSMathInvert: {
5112
5116
  */
5113
5117
  interface CSSMathMax extends CSSMathValue {
5114
5118
  /**
5115
- * The CSSMathMax.values read-only property of the which contains one or more CSSNumericValue objects.
5119
+ * The CSSMathMax.values read-only property of the CSSMathMax interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5116
5120
  *
5117
5121
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values)
5118
5122
  */
@@ -5131,7 +5135,7 @@ declare var CSSMathMax: {
5131
5135
  */
5132
5136
  interface CSSMathMin extends CSSMathValue {
5133
5137
  /**
5134
- * The CSSMathMin.values read-only property of the which contains one or more CSSNumericValue objects.
5138
+ * The CSSMathMin.values read-only property of the CSSMathMin interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5135
5139
  *
5136
5140
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values)
5137
5141
  */
@@ -5150,7 +5154,7 @@ declare var CSSMathMin: {
5150
5154
  */
5151
5155
  interface CSSMathNegate extends CSSMathValue {
5152
5156
  /**
5153
- * The CSSMathNegate.value read-only property of the A CSSNumericValue.
5157
+ * The CSSMathNegate.value read-only property of the CSSMathNegate interface returns a CSSNumericValue object.
5154
5158
  *
5155
5159
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value)
5156
5160
  */
@@ -5169,7 +5173,7 @@ declare var CSSMathNegate: {
5169
5173
  */
5170
5174
  interface CSSMathProduct extends CSSMathValue {
5171
5175
  /**
5172
- * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a A CSSNumericArray.
5176
+ * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5173
5177
  *
5174
5178
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values)
5175
5179
  */
@@ -5226,7 +5230,7 @@ declare var CSSMathValue: {
5226
5230
  */
5227
5231
  interface CSSMatrixComponent extends CSSTransformComponent {
5228
5232
  /**
5229
- * The **`matrix`** property of the See the matrix() and matrix3d() pages for examples.
5233
+ * The **`matrix`** property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.
5230
5234
  *
5231
5235
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)
5232
5236
  */
@@ -5245,7 +5249,7 @@ declare var CSSMatrixComponent: {
5245
5249
  */
5246
5250
  interface CSSMediaRule extends CSSConditionRule {
5247
5251
  /**
5248
- * The read-only **`media`** property of the destination medium for style information.
5252
+ * The read-only **`media`** property of the CSSMediaRule interface returns a MediaList representing the intended destination medium for style information.
5249
5253
  *
5250
5254
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media)
5251
5255
  */
@@ -5310,7 +5314,7 @@ declare var CSSNestedDeclarations: {
5310
5314
  */
5311
5315
  interface CSSNumericArray {
5312
5316
  /**
5313
- * The read-only **`length`** property of the An integer representing the number of CSSNumericValue objects in the list.
5317
+ * The read-only **`length`** property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.
5314
5318
  *
5315
5319
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length)
5316
5320
  */
@@ -5331,61 +5335,61 @@ declare var CSSNumericArray: {
5331
5335
  */
5332
5336
  interface CSSNumericValue extends CSSStyleValue {
5333
5337
  /**
5334
- * The **`add()`** method of the `CSSNumericValue`.
5338
+ * The **`add()`** method of the CSSNumericValue interface adds a supplied number to the `CSSNumericValue`.
5335
5339
  *
5336
5340
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add)
5337
5341
  */
5338
5342
  add(...values: CSSNumberish[]): CSSNumericValue;
5339
5343
  /**
5340
- * The **`div()`** method of the supplied value.
5344
+ * The **`div()`** method of the CSSNumericValue interface divides the `CSSNumericValue` by the supplied value.
5341
5345
  *
5342
5346
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/div)
5343
5347
  */
5344
5348
  div(...values: CSSNumberish[]): CSSNumericValue;
5345
5349
  /**
5346
- * The **`equals()`** method of the value are strictly equal.
5350
+ * The **`equals()`** method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal.
5347
5351
  *
5348
5352
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)
5349
5353
  */
5350
5354
  equals(...value: CSSNumberish[]): boolean;
5351
5355
  /**
5352
- * The **`max()`** method of the passed.
5356
+ * The **`max()`** method of the CSSNumericValue interface returns the highest value from among the values passed.
5353
5357
  *
5354
5358
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/max)
5355
5359
  */
5356
5360
  max(...values: CSSNumberish[]): CSSNumericValue;
5357
5361
  /**
5358
- * The **`min()`** method of the values passed.
5362
+ * The **`min()`** method of the CSSNumericValue interface returns the lowest value from among those values passed.
5359
5363
  *
5360
5364
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/min)
5361
5365
  */
5362
5366
  min(...values: CSSNumberish[]): CSSNumericValue;
5363
5367
  /**
5364
- * The **`mul()`** method of the the supplied value.
5368
+ * The **`mul()`** method of the CSSNumericValue interface multiplies the `CSSNumericValue` by the supplied value.
5365
5369
  *
5366
5370
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/mul)
5367
5371
  */
5368
5372
  mul(...values: CSSNumberish[]): CSSNumericValue;
5369
5373
  /**
5370
- * The **`sub()`** method of the `CSSNumericValue`.
5374
+ * The **`sub()`** method of the CSSNumericValue interface subtracts a supplied number from the `CSSNumericValue`.
5371
5375
  *
5372
5376
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/sub)
5373
5377
  */
5374
5378
  sub(...values: CSSNumberish[]): CSSNumericValue;
5375
5379
  /**
5376
- * The **`to()`** method of the another.
5380
+ * The **`to()`** method of the CSSNumericValue interface converts a numeric value from one unit to another.
5377
5381
  *
5378
5382
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/to)
5379
5383
  */
5380
5384
  to(unit: string): CSSUnitValue;
5381
5385
  /**
5382
- * The **`toSum()`** method of the ```js-nolint toSum(units) ``` - `units` - : The units to convert to.
5386
+ * The **`toSum()`** method of the CSSNumericValue interface converts the object's value to a CSSMathSum object to values of the specified unit.
5383
5387
  *
5384
5388
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/toSum)
5385
5389
  */
5386
5390
  toSum(...units: string[]): CSSMathSum;
5387
5391
  /**
5388
- * The **`type()`** method of the `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
5392
+ * The **`type()`** method of the CSSNumericValue interface returns the type of `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
5389
5393
  *
5390
5394
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/type)
5391
5395
  */
@@ -5396,7 +5400,7 @@ declare var CSSNumericValue: {
5396
5400
  prototype: CSSNumericValue;
5397
5401
  new(): CSSNumericValue;
5398
5402
  /**
5399
- * The **`parse()`** static method of the members are value and the units.
5403
+ * The **`parse()`** static method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.
5400
5404
  *
5401
5405
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/parse_static)
5402
5406
  */
@@ -5469,7 +5473,7 @@ declare var CSSPageRule: {
5469
5473
  */
5470
5474
  interface CSSPerspective extends CSSTransformComponent {
5471
5475
  /**
5472
- * The **`length`** property of the It is used to apply a perspective transform to the element and its content.
5476
+ * The **`length`** property of the CSSPerspective interface sets the distance from z=0.
5473
5477
  *
5474
5478
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length)
5475
5479
  */
@@ -5704,25 +5708,25 @@ declare var CSSPropertyRule: {
5704
5708
  */
5705
5709
  interface CSSRotate extends CSSTransformComponent {
5706
5710
  /**
5707
- * The **`angle`** property of the denotes a clockwise rotation, a negative angle a counter-clockwise one.
5711
+ * The **`angle`** property of the CSSRotate interface gets and sets the angle of rotation.
5708
5712
  *
5709
5713
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle)
5710
5714
  */
5711
5715
  angle: CSSNumericValue;
5712
5716
  /**
5713
- * The **`x`** property of the translating vector.
5717
+ * The **`x`** property of the CSSRotate interface gets and sets the abscissa or x-axis of the translating vector.
5714
5718
  *
5715
5719
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/x)
5716
5720
  */
5717
5721
  x: CSSNumberish;
5718
5722
  /**
5719
- * The **`y`** property of the translating vector.
5723
+ * The **`y`** property of the CSSRotate interface gets and sets the ordinate or y-axis of the translating vector.
5720
5724
  *
5721
5725
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/y)
5722
5726
  */
5723
5727
  y: CSSNumberish;
5724
5728
  /**
5725
- * The **`z`** property of the vector.
5729
+ * The **`z`** property of the CSSRotate interface representing the z-component of the translating vector.
5726
5730
  *
5727
5731
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)
5728
5732
  */
@@ -5754,13 +5758,13 @@ interface CSSRule {
5754
5758
  */
5755
5759
  readonly parentRule: CSSRule | null;
5756
5760
  /**
5757
- * The **`parentStyleSheet`** property of the the current rule is defined.
5761
+ * The **`parentStyleSheet`** property of the CSSRule interface returns the StyleSheet object in which the current rule is defined.
5758
5762
  *
5759
5763
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/parentStyleSheet)
5760
5764
  */
5761
5765
  readonly parentStyleSheet: CSSStyleSheet | null;
5762
5766
  /**
5763
- * The read-only **`type`** property of the indicating which type of rule the CSSRule represents.
5767
+ * The read-only **`type`** property of the CSSRule interface is a deprecated property that returns an integer indicating which type of rule the CSSRule represents.
5764
5768
  * @deprecated
5765
5769
  *
5766
5770
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/type)
@@ -5830,19 +5834,19 @@ declare var CSSRuleList: {
5830
5834
  */
5831
5835
  interface CSSScale extends CSSTransformComponent {
5832
5836
  /**
5833
- * The **`x`** property of the translating vector.
5837
+ * The **`x`** property of the CSSScale interface gets and sets the abscissa or x-axis of the translating vector.
5834
5838
  *
5835
5839
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x)
5836
5840
  */
5837
5841
  x: CSSNumberish;
5838
5842
  /**
5839
- * The **`y`** property of the translating vector.
5843
+ * The **`y`** property of the CSSScale interface gets and sets the ordinate or y-axis of the translating vector.
5840
5844
  *
5841
5845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/y)
5842
5846
  */
5843
5847
  y: CSSNumberish;
5844
5848
  /**
5845
- * The **`z`** property of the vector.
5849
+ * The **`z`** property of the CSSScale interface representing the z-component of the translating vector.
5846
5850
  *
5847
5851
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/z)
5848
5852
  */
@@ -5886,13 +5890,13 @@ declare var CSSScopeRule: {
5886
5890
  */
5887
5891
  interface CSSSkew extends CSSTransformComponent {
5888
5892
  /**
5889
- * The **`ax`** property of the along the x-axis (or abscissa).
5893
+ * The **`ax`** property of the CSSSkew interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
5890
5894
  *
5891
5895
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax)
5892
5896
  */
5893
5897
  ax: CSSNumericValue;
5894
5898
  /**
5895
- * The **`ay`** property of the along the y-axis (or ordinate).
5899
+ * The **`ay`** property of the CSSSkew interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
5896
5900
  *
5897
5901
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ay)
5898
5902
  */
@@ -5911,7 +5915,7 @@ declare var CSSSkew: {
5911
5915
  */
5912
5916
  interface CSSSkewX extends CSSTransformComponent {
5913
5917
  /**
5914
- * The **`ax`** property of the along the x-axis (or abscissa).
5918
+ * The **`ax`** property of the CSSSkewX interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
5915
5919
  *
5916
5920
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax)
5917
5921
  */
@@ -5930,7 +5934,7 @@ declare var CSSSkewX: {
5930
5934
  */
5931
5935
  interface CSSSkewY extends CSSTransformComponent {
5932
5936
  /**
5933
- * The **`ay`** property of the along the y-axis (or ordinate).
5937
+ * The **`ay`** property of the CSSSkewY interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
5934
5938
  *
5935
5939
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay)
5936
5940
  */
@@ -7383,7 +7387,7 @@ interface CSSStyleRule extends CSSGroupingRule {
7383
7387
  get style(): CSSStyleProperties;
7384
7388
  set style(cssText: string);
7385
7389
  /**
7386
- * The **`styleMap`** read-only property of the which provides access to the rule's property-value pairs.
7390
+ * The **`styleMap`** read-only property of the CSSStyleRule interface returns a StylePropertyMap object which provides access to the rule's property-value pairs.
7387
7391
  *
7388
7392
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap)
7389
7393
  */
@@ -7517,7 +7521,7 @@ interface CSSTransformComponent {
7517
7521
  */
7518
7522
  is2D: boolean;
7519
7523
  /**
7520
- * The **`toMatrix()`** method of the object.
7524
+ * The **`toMatrix()`** method of the CSSTransformComponent interface returns a DOMMatrix object.
7521
7525
  *
7522
7526
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/toMatrix)
7523
7527
  */
@@ -7537,19 +7541,19 @@ declare var CSSTransformComponent: {
7537
7541
  */
7538
7542
  interface CSSTransformValue extends CSSStyleValue {
7539
7543
  /**
7540
- * The read-only **`is2D`** property of the In the case of the `CSSTransformValue` this property returns true unless any of the individual functions return false for `Is2D`, in which case it returns false.
7544
+ * The read-only **`is2D`** property of the CSSTransformValue interface returns whether the transform is 2D or 3D.
7541
7545
  *
7542
7546
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D)
7543
7547
  */
7544
7548
  readonly is2D: boolean;
7545
7549
  /**
7546
- * The read-only **`length`** property of the the list.
7550
+ * The read-only **`length`** property of the CSSTransformValue interface returns the number of transform components in the list.
7547
7551
  *
7548
7552
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/length)
7549
7553
  */
7550
7554
  readonly length: number;
7551
7555
  /**
7552
- * The **`toMatrix()`** method of the ```js-nolint toMatrix() ``` None.
7556
+ * The **`toMatrix()`** method of the CSSTransformValue interface returns a DOMMatrix object.
7553
7557
  *
7554
7558
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/toMatrix)
7555
7559
  */
@@ -7570,7 +7574,7 @@ declare var CSSTransformValue: {
7570
7574
  */
7571
7575
  interface CSSTransition extends Animation {
7572
7576
  /**
7573
- * The **`transitionProperty`** property of the name** of the transition.
7577
+ * The **`transitionProperty`** property of the CSSTransition interface returns the **expanded transition property name** of the transition.
7574
7578
  *
7575
7579
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransition/transitionProperty)
7576
7580
  */
@@ -7593,19 +7597,19 @@ declare var CSSTransition: {
7593
7597
  */
7594
7598
  interface CSSTranslate extends CSSTransformComponent {
7595
7599
  /**
7596
- * The **`x`** property of the translating vector.
7600
+ * The **`x`** property of the CSSTranslate interface gets and sets the abscissa or x-axis of the translating vector.
7597
7601
  *
7598
7602
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x)
7599
7603
  */
7600
7604
  x: CSSNumericValue;
7601
7605
  /**
7602
- * The **`y`** property of the translating vector.
7606
+ * The **`y`** property of the CSSTranslate interface gets and sets the ordinate or y-axis of the translating vector.
7603
7607
  *
7604
7608
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/y)
7605
7609
  */
7606
7610
  y: CSSNumericValue;
7607
7611
  /**
7608
- * The **`z`** property of the vector.
7612
+ * The **`z`** property of the CSSTranslate interface representing the z-component of the translating vector.
7609
7613
  *
7610
7614
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/z)
7611
7615
  */
@@ -7630,7 +7634,7 @@ interface CSSUnitValue extends CSSNumericValue {
7630
7634
  */
7631
7635
  readonly unit: string;
7632
7636
  /**
7633
- * The **`CSSUnitValue.value`** property of the A double.
7637
+ * The **`CSSUnitValue.value`** property of the CSSUnitValue interface returns a double indicating the number of units.
7634
7638
  *
7635
7639
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/value)
7636
7640
  */
@@ -7649,7 +7653,7 @@ declare var CSSUnitValue: {
7649
7653
  */
7650
7654
  interface CSSUnparsedValue extends CSSStyleValue {
7651
7655
  /**
7652
- * The **`length`** read-only property of the An integer.
7656
+ * The **`length`** read-only property of the CSSUnparsedValue interface returns the number of items in the object.
7653
7657
  *
7654
7658
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length)
7655
7659
  */
@@ -7670,13 +7674,13 @@ declare var CSSUnparsedValue: {
7670
7674
  */
7671
7675
  interface CSSVariableReferenceValue {
7672
7676
  /**
7673
- * The **`fallback`** read-only property of the A CSSUnparsedValue.
7677
+ * The **`fallback`** read-only property of the CSSVariableReferenceValue interface returns the custom property fallback value of the CSSVariableReferenceValue.
7674
7678
  *
7675
7679
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback)
7676
7680
  */
7677
7681
  readonly fallback: CSSUnparsedValue | null;
7678
7682
  /**
7679
- * The **`variable`** property of the A string beginning with `--` (that is, a custom property name).
7683
+ * The **`variable`** property of the CSSVariableReferenceValue interface returns the custom property name of the CSSVariableReferenceValue.
7680
7684
  *
7681
7685
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/variable)
7682
7686
  */
@@ -7724,7 +7728,7 @@ interface Cache {
7724
7728
  */
7725
7729
  delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<boolean>;
7726
7730
  /**
7727
- * The **`keys()`** method of the Cache interface returns a representing the keys of the Cache.
7731
+ * The **`keys()`** method of the Cache interface returns a Promise that resolves to an array of Request objects representing the keys of the Cache.
7728
7732
  *
7729
7733
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/keys)
7730
7734
  */
@@ -7742,7 +7746,7 @@ interface Cache {
7742
7746
  */
7743
7747
  matchAll(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Response>>;
7744
7748
  /**
7745
- * The **`put()`** method of the Often, you will just want to Window/fetch one or more requests, then add the result straight to your cache.
7749
+ * The **`put()`** method of the Cache interface allows key/value pairs to be added to the current Cache object.
7746
7750
  *
7747
7751
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/put)
7748
7752
  */
@@ -7768,7 +7772,7 @@ interface CacheStorage {
7768
7772
  */
7769
7773
  delete(cacheName: string): Promise<boolean>;
7770
7774
  /**
7771
- * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a You can access `CacheStorage` through the Window.caches property in windows or through the WorkerGlobalScope.caches property in workers.
7775
+ * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a Cache object matches the `cacheName`.
7772
7776
  *
7773
7777
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/has)
7774
7778
  */
@@ -7786,7 +7790,7 @@ interface CacheStorage {
7786
7790
  */
7787
7791
  match(request: RequestInfo | URL, options?: MultiCacheQueryOptions): Promise<Response | undefined>;
7788
7792
  /**
7789
- * The **`open()`** method of the the Cache object matching the `cacheName`.
7793
+ * The **`open()`** method of the CacheStorage interface returns a Promise that resolves to the Cache object matching the `cacheName`.
7790
7794
  *
7791
7795
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open)
7792
7796
  */
@@ -7993,7 +7997,7 @@ interface CanvasRect {
7993
7997
  */
7994
7998
  interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
7995
7999
  /**
7996
- * The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the might be `null` if there is no associated canvas element.
8000
+ * The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
7997
8001
  *
7998
8002
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
7999
8003
  */
@@ -8271,7 +8275,7 @@ declare var Clipboard: {
8271
8275
  */
8272
8276
  interface ClipboardEvent extends Event {
8273
8277
  /**
8274
- * The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to: - specify what data should be put into the clipboard from the Element/cut_event and Element/copy_event event handlers, typically with a DataTransfer.setData call; - obtain the data to be pasted from the Element/paste_event event handler, typically with a DataTransfer.getData call.
8278
+ * The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to:
8275
8279
  *
8276
8280
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardEvent/clipboardData)
8277
8281
  */
@@ -8372,7 +8376,7 @@ declare var Comment: {
8372
8376
  */
8373
8377
  interface CompositionEvent extends UIEvent {
8374
8378
  /**
8375
- * The **`data`** read-only property of the method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.
8379
+ * The **`data`** read-only property of the CompositionEvent interface returns the characters generated by the input method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.
8376
8380
  *
8377
8381
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/data)
8378
8382
  */
@@ -8656,7 +8660,7 @@ interface CredentialsContainer {
8656
8660
  */
8657
8661
  preventSilentAccess(): Promise<void>;
8658
8662
  /**
8659
- * The **`store()`** method of the ```js-nolint store(credentials) ``` - `credentials` - : A valid Credential instance.
8663
+ * The **`store()`** method of the CredentialsContainer stores a set of credentials for the user inside a Credential instance, returning this in a Promise.
8660
8664
  *
8661
8665
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/store)
8662
8666
  */
@@ -8675,7 +8679,7 @@ declare var CredentialsContainer: {
8675
8679
  */
8676
8680
  interface Crypto {
8677
8681
  /**
8678
- * The **`Crypto.subtle`** read-only property returns a cryptographic operations.
8682
+ * The **`Crypto.subtle`** read-only property returns a SubtleCrypto which can then be used to perform low-level cryptographic operations.
8679
8683
  * Available only in secure contexts.
8680
8684
  *
8681
8685
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle)
@@ -8752,25 +8756,25 @@ interface CustomElementRegistry {
8752
8756
  */
8753
8757
  define(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void;
8754
8758
  /**
8755
- * The **`get()`** method of the previously-defined custom element.
8759
+ * The **`get()`** method of the CustomElementRegistry interface returns the constructor for a previously-defined custom element.
8756
8760
  *
8757
8761
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/get)
8758
8762
  */
8759
8763
  get(name: string): CustomElementConstructor | undefined;
8760
8764
  /**
8761
- * The **`getName()`** method of the previously-defined custom element.
8765
+ * The **`getName()`** method of the CustomElementRegistry interface returns the name for a previously-defined custom element.
8762
8766
  *
8763
8767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
8764
8768
  */
8765
8769
  getName(constructor: CustomElementConstructor): string | null;
8766
8770
  /**
8767
- * The **`upgrade()`** method of the elements in a Node subtree, even before they are connected to the main document.
8771
+ * The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
8768
8772
  *
8769
8773
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/upgrade)
8770
8774
  */
8771
8775
  upgrade(root: Node): void;
8772
8776
  /**
8773
- * The **`whenDefined()`** method of the resolves when the named element is defined.
8777
+ * The **`whenDefined()`** method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.
8774
8778
  *
8775
8779
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/whenDefined)
8776
8780
  */
@@ -8836,13 +8840,13 @@ interface DOMException extends Error {
8836
8840
  */
8837
8841
  readonly code: number;
8838
8842
  /**
8839
- * The **`message`** read-only property of the a message or description associated with the given error name.
8843
+ * The **`message`** read-only property of the DOMException interface returns a string representing a message or description associated with the given error name.
8840
8844
  *
8841
8845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message)
8842
8846
  */
8843
8847
  readonly message: string;
8844
8848
  /**
8845
- * The **`name`** read-only property of the one of the strings associated with an error name.
8849
+ * The **`name`** read-only property of the DOMException interface returns a string that contains one of the strings associated with an error name.
8846
8850
  *
8847
8851
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name)
8848
8852
  */
@@ -8917,7 +8921,7 @@ interface DOMImplementation {
8917
8921
  */
8918
8922
  createDocument(namespace: string | null, qualifiedName: string | null, doctype?: DocumentType | null): XMLDocument;
8919
8923
  /**
8920
- * The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with into the document via methods like Node.insertBefore() or ```js-nolint createDocumentType(name, publicId, systemId) ``` - `name` - : A string containing the name of the doctype, like `html`.
8924
+ * The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
8921
8925
  *
8922
8926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
8923
8927
  */
@@ -9185,7 +9189,7 @@ interface DOMMatrixReadOnly {
9185
9189
  */
9186
9190
  rotateFromVector(x?: number, y?: number): DOMMatrix;
9187
9191
  /**
9188
- * The **`scale()`** method of the original matrix with a scale transform applied.
9192
+ * The **`scale()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a scale transform applied.
9189
9193
  *
9190
9194
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)
9191
9195
  */
@@ -9229,7 +9233,7 @@ interface DOMMatrixReadOnly {
9229
9233
  */
9230
9234
  toJSON(): any;
9231
9235
  /**
9232
- * The **`transformPoint`** method of the You can also create a new `DOMPoint` by applying a matrix to a point with the DOMPointReadOnly.matrixTransform() method.
9236
+ * The **`transformPoint`** method of the DOMMatrixReadOnly interface creates a new DOMPoint object, transforming a specified point by the matrix.
9233
9237
  *
9234
9238
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint)
9235
9239
  */
@@ -9353,7 +9357,7 @@ interface DOMPointReadOnly {
9353
9357
  */
9354
9358
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
9355
9359
  /**
9356
- * The DOMPointReadOnly method `toJSON()` returns an object giving the ```js-nolint toJSON() ``` None.
9360
+ * The DOMPointReadOnly method `toJSON()` returns an object giving the JSON form of the point object.
9357
9361
  *
9358
9362
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)
9359
9363
  */
@@ -9408,7 +9412,7 @@ interface DOMQuad {
9408
9412
  */
9409
9413
  getBounds(): DOMRect;
9410
9414
  /**
9411
- * The DOMQuad method `toJSON()` returns a ```js-nolint toJSON() ``` None.
9415
+ * The DOMQuad method `toJSON()` returns a JSON representation of the `DOMQuad` object.
9412
9416
  *
9413
9417
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON)
9414
9418
  */
@@ -9458,7 +9462,7 @@ declare var DOMRect: {
9458
9462
  prototype: DOMRect;
9459
9463
  new(x?: number, y?: number, width?: number, height?: number): DOMRect;
9460
9464
  /**
9461
- * The **`fromRect()`** static method of the object with a given location and dimensions.
9465
+ * The **`fromRect()`** static method of the DOMRect object creates a new `DOMRect` object with a given location and dimensions.
9462
9466
  *
9463
9467
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)
9464
9468
  */
@@ -9560,7 +9564,7 @@ declare var DOMRectReadOnly: {
9560
9564
  prototype: DOMRectReadOnly;
9561
9565
  new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly;
9562
9566
  /**
9563
- * The **`fromRect()`** static method of the object with a given location and dimensions.
9567
+ * The **`fromRect()`** static method of the DOMRectReadOnly object creates a new `DOMRectReadOnly` object with a given location and dimensions.
9564
9568
  *
9565
9569
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)
9566
9570
  */
@@ -9708,7 +9712,7 @@ interface DataTransfer {
9708
9712
  */
9709
9713
  readonly files: FileList;
9710
9714
  /**
9711
- * The read-only `items` property of the DataTransfer interface is a A DataTransferItemList object containing DataTransferItem objects representing the items being dragged in a drag operation, one list item for each object being dragged.
9715
+ * The read-only `items` property of the DataTransfer interface is a DataTransferItemList of the DataTransferItem in a drag operation.
9712
9716
  *
9713
9717
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/items)
9714
9718
  */
@@ -9800,13 +9804,13 @@ declare var DataTransferItem: {
9800
9804
  */
9801
9805
  interface DataTransferItemList {
9802
9806
  /**
9803
- * The read-only **`length`** property of the the drag item list.
9807
+ * The read-only **`length`** property of the DataTransferItemList interface returns the number of items currently in the drag item list.
9804
9808
  *
9805
9809
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/length)
9806
9810
  */
9807
9811
  readonly length: number;
9808
9812
  /**
9809
- * The **`DataTransferItemList.add()`** method creates a new list.
9813
+ * The **`DataTransferItemList.add()`** method creates a new DataTransferItem using the specified data and adds it to the drag data list.
9810
9814
  *
9811
9815
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/add)
9812
9816
  */
@@ -9819,7 +9823,7 @@ interface DataTransferItemList {
9819
9823
  */
9820
9824
  clear(): void;
9821
9825
  /**
9822
- * The **`DataTransferItemList.remove()`** method removes the less than zero or greater than one less than the length of the list, the list will not be changed.
9826
+ * The **`DataTransferItemList.remove()`** method removes the DataTransferItem at the specified index from the list.
9823
9827
  *
9824
9828
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/remove)
9825
9829
  */
@@ -10033,7 +10037,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10033
10037
  */
10034
10038
  readonly all: HTMLAllCollection;
10035
10039
  /**
10036
- * The **`anchors`** read-only property of the An HTMLCollection.
10040
+ * The **`anchors`** read-only property of the Document interface returns a list of all of the anchors in the document.
10037
10041
  * @deprecated
10038
10042
  *
10039
10043
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/anchors)
@@ -10054,7 +10058,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10054
10058
  */
10055
10059
  bgColor: string;
10056
10060
  /**
10057
- * The **`Document.body`** property represents the `null` if no such element exists.
10061
+ * The **`Document.body`** property represents the body or frameset node of the current document, or `null` if no such element exists.
10058
10062
  *
10059
10063
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/body)
10060
10064
  */
@@ -10096,7 +10100,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10096
10100
  */
10097
10101
  readonly currentScript: HTMLOrSVGScriptElement | null;
10098
10102
  /**
10099
- * In browsers, **`document.defaultView`** returns the This property is read-only.
10103
+ * In browsers, **`document.defaultView`** returns the Window object associated with Browsing_context, or `null` if none is available.
10100
10104
  *
10101
10105
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/defaultView)
10102
10106
  */
@@ -10120,13 +10124,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10120
10124
  */
10121
10125
  readonly doctype: DocumentType | null;
10122
10126
  /**
10123
- * The **`documentElement`** read-only property of the Document interface returns the example, the html element for HTML documents).
10127
+ * The **`documentElement`** read-only property of the Document interface returns the Element that is the root element of the document (for example, the html element for HTML documents).
10124
10128
  *
10125
10129
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentElement)
10126
10130
  */
10127
10131
  readonly documentElement: HTMLElement;
10128
10132
  /**
10129
- * The **`documentURI`** read-only property of the A string.
10133
+ * The **`documentURI`** read-only property of the Document interface returns the document location as a string.
10130
10134
  *
10131
10135
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentURI)
10132
10136
  */
@@ -10139,7 +10143,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10139
10143
  */
10140
10144
  domain: string;
10141
10145
  /**
10142
- * The **`embeds`** read-only property of the An HTMLCollection.
10146
+ * The **`embeds`** read-only property of the Document interface returns a list of the embedded embed elements within the current document.
10143
10147
  *
10144
10148
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/embeds)
10145
10149
  */
@@ -10195,7 +10199,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10195
10199
  */
10196
10200
  readonly images: HTMLCollectionOf<HTMLImageElement>;
10197
10201
  /**
10198
- * The **`Document.implementation`** property returns a A DOMImplementation object.
10202
+ * The **`Document.implementation`** property returns a DOMImplementation object associated with the current document.
10199
10203
  *
10200
10204
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/implementation)
10201
10205
  */
@@ -10226,7 +10230,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10226
10230
  */
10227
10231
  readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
10228
10232
  /**
10229
- * The **`Document.location`** read-only property returns a and provides methods for changing that URL and loading another URL.
10233
+ * The **`Document.location`** read-only property returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
10230
10234
  *
10231
10235
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)
10232
10236
  */
@@ -10246,13 +10250,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10246
10250
  onvisibilitychange: ((this: Document, ev: Event) => any) | null;
10247
10251
  readonly ownerDocument: null;
10248
10252
  /**
10249
- * The read-only **`pictureInPictureEnabled`** property of the available.
10253
+ * The read-only **`pictureInPictureEnabled`** property of the Document interface indicates whether or not picture-in-picture mode is available.
10250
10254
  *
10251
10255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pictureInPictureEnabled)
10252
10256
  */
10253
10257
  readonly pictureInPictureEnabled: boolean;
10254
10258
  /**
10255
- * The **`plugins`** read-only property of the containing one or more HTMLEmbedElements representing the An HTMLCollection.
10259
+ * The **`plugins`** read-only property of the Document interface returns an HTMLCollection object containing one or more HTMLEmbedElements representing the embed elements in the current document.
10256
10260
  *
10257
10261
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/plugins)
10258
10262
  */
@@ -10270,7 +10274,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10270
10274
  */
10271
10275
  readonly referrer: string;
10272
10276
  /**
10273
- * **`Document.rootElement`** returns the Element that is the root element of the document if it is an documents.
10277
+ * **`Document.rootElement`** returns the Element that is the root element of the document if it is an svg element, otherwise `null`.
10274
10278
  * @deprecated
10275
10279
  *
10276
10280
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)
@@ -10283,7 +10287,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10283
10287
  */
10284
10288
  readonly scripts: HTMLCollectionOf<HTMLScriptElement>;
10285
10289
  /**
10286
- * The **`scrollingElement`** read-only property of the scrolls the document.
10290
+ * The **`scrollingElement`** read-only property of the Document interface returns a reference to the Element that scrolls the document.
10287
10291
  *
10288
10292
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollingElement)
10289
10293
  */
@@ -10480,7 +10484,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10480
10484
  */
10481
10485
  createProcessingInstruction(target: string, data: string): ProcessingInstruction;
10482
10486
  /**
10483
- * The **`Document.createRange()`** method returns a new ```js-nolint createRange() ``` None.
10487
+ * The **`Document.createRange()`** method returns a new Range object.
10484
10488
  *
10485
10489
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createRange)
10486
10490
  */
@@ -10524,7 +10528,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10524
10528
  exitPointerLock(): void;
10525
10529
  getElementById(elementId: string): HTMLElement | null;
10526
10530
  /**
10527
- * The **`getElementsByClassName`** method of of all child elements which have all of the given class name(s).
10531
+ * The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
10528
10532
  *
10529
10533
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByClassName)
10530
10534
  */
@@ -10536,7 +10540,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10536
10540
  */
10537
10541
  getElementsByName(elementName: string): NodeListOf<HTMLElement>;
10538
10542
  /**
10539
- * The **`getElementsByTagName`** method of The complete document is searched, including the root node.
10543
+ * The **`getElementsByTagName`** method of Document interface returns an HTMLCollection of elements with the given tag name.
10540
10544
  *
10541
10545
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByTagName)
10542
10546
  */
@@ -10574,13 +10578,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10574
10578
  */
10575
10579
  hasStorageAccess(): Promise<boolean>;
10576
10580
  /**
10577
- * The Document object's **`importNode()`** method creates a copy of a inserted into the current document later.
10581
+ * The Document object's **`importNode()`** method creates a copy of a Node or DocumentFragment from another document, to be inserted into the current document later.
10578
10582
  *
10579
10583
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
10580
10584
  */
10581
10585
  importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
10582
10586
  /**
10583
- * The **`Document.open()`** method opens a document for This does come with some side effects.
10587
+ * The **`Document.open()`** method opens a document for Document.write.
10584
10588
  *
10585
10589
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/open)
10586
10590
  */
@@ -10963,7 +10967,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
10963
10967
  get classList(): DOMTokenList;
10964
10968
  set classList(value: string);
10965
10969
  /**
10966
- * The **`className`** property of the of the specified element.
10970
+ * The **`className`** property of the Element interface gets and sets the value of the `class` attribute of the specified element.
10967
10971
  *
10968
10972
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className)
10969
10973
  */
@@ -11116,7 +11120,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11116
11120
  */
11117
11121
  computedStyleMap(): StylePropertyMapReadOnly;
11118
11122
  /**
11119
- * The **`getAttribute()`** method of the element.
11123
+ * The **`getAttribute()`** method of the Element interface returns the value of a specified attribute on the element.
11120
11124
  *
11121
11125
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute)
11122
11126
  */
@@ -11128,7 +11132,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11128
11132
  */
11129
11133
  getAttributeNS(namespace: string | null, localName: string): string | null;
11130
11134
  /**
11131
- * The **`getAttributeNames()`** method of the array.
11135
+ * The **`getAttributeNames()`** method of the Element interface returns the attribute names of the element as an Array of strings.
11132
11136
  *
11133
11137
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames)
11134
11138
  */
@@ -11146,7 +11150,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11146
11150
  */
11147
11151
  getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
11148
11152
  /**
11149
- * The **`Element.getBoundingClientRect()`** method returns a position relative to the viewport.
11153
+ * The **`Element.getBoundingClientRect()`** method returns a DOMRect object providing information about the size of an element and its position relative to the viewport.
11150
11154
  *
11151
11155
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect)
11152
11156
  */
@@ -11158,13 +11162,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11158
11162
  */
11159
11163
  getClientRects(): DOMRectList;
11160
11164
  /**
11161
- * The Element method **`getElementsByClassName()`** returns a live specified class name or names.
11165
+ * The Element method **`getElementsByClassName()`** returns a live HTMLCollection which contains every descendant element which has the specified class name or names.
11162
11166
  *
11163
11167
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName)
11164
11168
  */
11165
11169
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
11166
11170
  /**
11167
- * The **`Element.getElementsByTagName()`** method returns a live All descendants of the specified element are searched, but not the element itself.
11171
+ * The **`Element.getElementsByTagName()`** method returns a live HTMLCollection of elements with the given tag name.
11168
11172
  *
11169
11173
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName)
11170
11174
  */
@@ -11208,19 +11212,19 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11208
11212
  */
11209
11213
  hasAttributes(): boolean;
11210
11214
  /**
11211
- * The **`hasPointerCapture()`** method of the pointer capture for the pointer identified by the given pointer ID.
11215
+ * The **`hasPointerCapture()`** method of the Element interface checks whether the element on which it is invoked has pointer capture for the pointer identified by the given pointer ID.
11212
11216
  *
11213
11217
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture)
11214
11218
  */
11215
11219
  hasPointerCapture(pointerId: number): boolean;
11216
11220
  /**
11217
- * The **`insertAdjacentElement()`** method of the relative to the element it is invoked upon.
11221
+ * The **`insertAdjacentElement()`** method of the Element interface inserts a given element node at a given position relative to the element it is invoked upon.
11218
11222
  *
11219
11223
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement)
11220
11224
  */
11221
11225
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
11222
11226
  /**
11223
- * The **`insertAdjacentHTML()`** method of the the resulting nodes into the DOM tree at a specified position.
11227
+ * The **`insertAdjacentHTML()`** method of the Element interface parses the specified text as HTML or XML and inserts the resulting nodes into the DOM tree at a specified position.
11224
11228
  *
11225
11229
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML)
11226
11230
  */
@@ -11238,7 +11242,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11238
11242
  */
11239
11243
  matches(selectors: string): boolean;
11240
11244
  /**
11241
- * The **`releasePointerCapture()`** method of the previously set for a specific (PointerEvent) _pointer_.
11245
+ * The **`releasePointerCapture()`** method of the Element interface releases (stops) _pointer capture_ that was previously set for a specific (PointerEvent) _pointer_.
11242
11246
  *
11243
11247
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture)
11244
11248
  */
@@ -11250,7 +11254,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11250
11254
  */
11251
11255
  removeAttribute(qualifiedName: string): void;
11252
11256
  /**
11253
- * The **`removeAttributeNS()`** method of the If you are working with HTML and you don't need to specify the requested attribute as being part of a specific namespace, use the Element.removeAttribute() method instead.
11257
+ * The **`removeAttributeNS()`** method of the Element interface removes the specified attribute with the specified namespace from an element.
11254
11258
  *
11255
11259
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS)
11256
11260
  */
@@ -11331,13 +11335,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11331
11335
  */
11332
11336
  setHTMLUnsafe(html: string): void;
11333
11337
  /**
11334
- * The **`setPointerCapture()`** method of the _capture target_ of future pointer events.
11338
+ * The **`setPointerCapture()`** method of the Element interface is used to designate a specific element as the _capture target_ of future pointer events.
11335
11339
  *
11336
11340
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture)
11337
11341
  */
11338
11342
  setPointerCapture(pointerId: number): void;
11339
11343
  /**
11340
- * The **`toggleAttribute()`** method of the present and adding it if it is not present) on the given element.
11344
+ * The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element.
11341
11345
  *
11342
11346
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
11343
11347
  */
@@ -11615,7 +11619,7 @@ interface Event {
11615
11619
  */
11616
11620
  readonly cancelable: boolean;
11617
11621
  /**
11618
- * The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.
11622
+ * The read-only **`composed`** property of the Event interface returns a boolean value which indicates whether or not the event will propagate across the shadow DOM boundary into the standard DOM.
11619
11623
  *
11620
11624
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)
11621
11625
  */
@@ -11633,13 +11637,13 @@ interface Event {
11633
11637
  */
11634
11638
  readonly defaultPrevented: boolean;
11635
11639
  /**
11636
- * The **`eventPhase`** read-only property of the being evaluated.
11640
+ * The **`eventPhase`** read-only property of the Event interface indicates which phase of the event flow is currently being evaluated.
11637
11641
  *
11638
11642
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)
11639
11643
  */
11640
11644
  readonly eventPhase: number;
11641
11645
  /**
11642
- * The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via The only exception is the `click` event, which initializes the `isTrusted` property to `false` in user agents.
11646
+ * The **`isTrusted`** read-only property of the Event interface is a boolean value that is `true` when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via EventTarget.dispatchEvent().
11643
11647
  *
11644
11648
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
11645
11649
  */
@@ -11659,7 +11663,7 @@ interface Event {
11659
11663
  */
11660
11664
  readonly srcElement: EventTarget | null;
11661
11665
  /**
11662
- * The read-only **`target`** property of the dispatched.
11666
+ * The read-only **`target`** property of the Event interface is a reference to the object onto which the event was dispatched.
11663
11667
  *
11664
11668
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)
11665
11669
  */
@@ -11696,7 +11700,7 @@ interface Event {
11696
11700
  */
11697
11701
  preventDefault(): void;
11698
11702
  /**
11699
- * The **`stopImmediatePropagation()`** method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.
11703
+ * The **`stopImmediatePropagation()`** method of the Event interface prevents other listeners of the same event from being called.
11700
11704
  *
11701
11705
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)
11702
11706
  */
@@ -11763,25 +11767,25 @@ interface EventSource extends EventTarget {
11763
11767
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */
11764
11768
  onopen: ((this: EventSource, ev: Event) => any) | null;
11765
11769
  /**
11766
- * The **`readyState`** read-only property of the connection.
11770
+ * The **`readyState`** read-only property of the EventSource interface returns a number representing the state of the connection.
11767
11771
  *
11768
11772
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState)
11769
11773
  */
11770
11774
  readonly readyState: number;
11771
11775
  /**
11772
- * The **`url`** read-only property of the URL of the source.
11776
+ * The **`url`** read-only property of the EventSource interface returns a string representing the URL of the source.
11773
11777
  *
11774
11778
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url)
11775
11779
  */
11776
11780
  readonly url: string;
11777
11781
  /**
11778
- * The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set.
11782
+ * The **`withCredentials`** read-only property of the EventSource interface returns a boolean value indicating whether the `EventSource` object was instantiated with CORS credentials set.
11779
11783
  *
11780
11784
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials)
11781
11785
  */
11782
11786
  readonly withCredentials: boolean;
11783
11787
  /**
11784
- * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the ```js-nolint close() ``` None.
11788
+ * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the EventSource.readyState attribute to `2` (closed).
11785
11789
  *
11786
11790
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close)
11787
11791
  */
@@ -11972,7 +11976,7 @@ interface FileReader extends EventTarget {
11972
11976
  */
11973
11977
  readAsBinaryString(blob: Blob): void;
11974
11978
  /**
11975
- * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified file's data as a base64 encoded string.
11979
+ * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified Blob or File.
11976
11980
  *
11977
11981
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL)
11978
11982
  */
@@ -12007,13 +12011,13 @@ declare var FileReader: {
12007
12011
  */
12008
12012
  interface FileSystem {
12009
12013
  /**
12010
- * The read-only **`name`** property of the string is unique among all file systems currently exposed by the File and Directory Entries API.
12014
+ * The read-only **`name`** property of the FileSystem interface indicates the file system's name.
12011
12015
  *
12012
12016
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/name)
12013
12017
  */
12014
12018
  readonly name: string;
12015
12019
  /**
12016
- * The read-only **`root`** property of the object representing the root directory of the file system, for use with the File and Directory Entries API.
12020
+ * The read-only **`root`** property of the FileSystem interface specifies a FileSystemDirectoryEntry object representing the root directory of the file system, for use with the File and Directory Entries API.
12017
12021
  *
12018
12022
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/root)
12019
12023
  */
@@ -12032,19 +12036,19 @@ declare var FileSystem: {
12032
12036
  */
12033
12037
  interface FileSystemDirectoryEntry extends FileSystemEntry {
12034
12038
  /**
12035
- * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a the directory.
12039
+ * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a FileSystemDirectoryReader object which can be used to read the entries in the directory.
12036
12040
  *
12037
12041
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/createReader)
12038
12042
  */
12039
12043
  createReader(): FileSystemDirectoryReader;
12040
12044
  /**
12041
- * The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a somewhere within the directory subtree rooted at the directory on which it's called.
12045
+ * The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a FileSystemDirectoryEntry object corresponding to a directory contained somewhere within the directory subtree rooted at the directory on which it's called.
12042
12046
  *
12043
12047
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getDirectory)
12044
12048
  */
12045
12049
  getDirectory(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
12046
12050
  /**
12047
- * The FileSystemDirectoryEntry interface's method **`getFile()`** returns a within the directory subtree rooted at the directory on which it's called.
12051
+ * The FileSystemDirectoryEntry interface's method **`getFile()`** returns a FileSystemFileEntry object corresponding to a file contained somewhere within the directory subtree rooted at the directory on which it's called.
12048
12052
  *
12049
12053
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getFile)
12050
12054
  */
@@ -12065,25 +12069,25 @@ declare var FileSystemDirectoryEntry: {
12065
12069
  interface FileSystemDirectoryHandle extends FileSystemHandle {
12066
12070
  readonly kind: "directory";
12067
12071
  /**
12068
- * The **`getDirectoryHandle()`** method of the within the directory handle on which the method is called.
12072
+ * The **`getDirectoryHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemDirectoryHandle for a subdirectory with the specified name within the directory handle on which the method is called.
12069
12073
  *
12070
12074
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getDirectoryHandle)
12071
12075
  */
12072
12076
  getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
12073
12077
  /**
12074
- * The **`getFileHandle()`** method of the directory the method is called.
12078
+ * The **`getFileHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.
12075
12079
  *
12076
12080
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getFileHandle)
12077
12081
  */
12078
12082
  getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
12079
12083
  /**
12080
- * The **`removeEntry()`** method of the directory handle contains a file or directory called the name specified.
12084
+ * The **`removeEntry()`** method of the FileSystemDirectoryHandle interface attempts to remove an entry if the directory handle contains a file or directory called the name specified.
12081
12085
  *
12082
12086
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/removeEntry)
12083
12087
  */
12084
12088
  removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
12085
12089
  /**
12086
- * The **`resolve()`** method of the directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
12090
+ * The **`resolve()`** method of the FileSystemDirectoryHandle interface returns an Array of directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
12087
12091
  *
12088
12092
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/resolve)
12089
12093
  */
@@ -12121,7 +12125,7 @@ declare var FileSystemDirectoryReader: {
12121
12125
  */
12122
12126
  interface FileSystemEntry {
12123
12127
  /**
12124
- * The read-only **`filesystem`** property of the FileSystemEntry interface contains a resides.
12128
+ * The read-only **`filesystem`** property of the FileSystemEntry interface contains a FileSystem object that represents the file system on which the entry resides.
12125
12129
  *
12126
12130
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/filesystem)
12127
12131
  */
@@ -12151,7 +12155,7 @@ interface FileSystemEntry {
12151
12155
  */
12152
12156
  readonly name: string;
12153
12157
  /**
12154
- * The FileSystemEntry interface's method **`getParent()`** obtains a ```js-nolint getParent(successCallback, errorCallback) getParent(successCallback) ``` - `successCallback` - : A function which is called when the parent directory entry has been retrieved.
12158
+ * The FileSystemEntry interface's method **`getParent()`** obtains a FileSystemDirectoryEntry.
12155
12159
  *
12156
12160
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/getParent)
12157
12161
  */
@@ -12170,7 +12174,7 @@ declare var FileSystemEntry: {
12170
12174
  */
12171
12175
  interface FileSystemFileEntry extends FileSystemEntry {
12172
12176
  /**
12173
- * The FileSystemFileEntry interface's method **`file()`** returns a the directory entry.
12177
+ * The FileSystemFileEntry interface's method **`file()`** returns a File object which can be used to read data from the file represented by the directory entry.
12174
12178
  *
12175
12179
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileEntry/file)
12176
12180
  */
@@ -12197,7 +12201,7 @@ interface FileSystemFileHandle extends FileSystemHandle {
12197
12201
  */
12198
12202
  createWritable(options?: FileSystemCreateWritableOptions): Promise<FileSystemWritableFileStream>;
12199
12203
  /**
12200
- * The **`getFile()`** method of the If the file on disk changes or is removed after this method is called, the returned ```js-nolint getFile() ``` None.
12204
+ * The **`getFile()`** method of the FileSystemFileHandle interface returns a Promise which resolves to a File object representing the state on disk of the entry represented by the handle.
12201
12205
  *
12202
12206
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile)
12203
12207
  */
@@ -12217,19 +12221,19 @@ declare var FileSystemFileHandle: {
12217
12221
  */
12218
12222
  interface FileSystemHandle {
12219
12223
  /**
12220
- * The **`kind`** read-only property of the `'file'` if the associated entry is a file or `'directory'`.
12224
+ * The **`kind`** read-only property of the FileSystemHandle interface returns the type of entry.
12221
12225
  *
12222
12226
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind)
12223
12227
  */
12224
12228
  readonly kind: FileSystemHandleKind;
12225
12229
  /**
12226
- * The **`name`** read-only property of the handle.
12230
+ * The **`name`** read-only property of the FileSystemHandle interface returns the name of the entry represented by handle.
12227
12231
  *
12228
12232
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/name)
12229
12233
  */
12230
12234
  readonly name: string;
12231
12235
  /**
12232
- * The **`isSameEntry()`** method of the ```js-nolint isSameEntry(fileSystemHandle) ``` - FileSystemHandle - : The `FileSystemHandle` to match against the handle on which the method is invoked.
12236
+ * The **`isSameEntry()`** method of the FileSystemHandle interface compares two FileSystemHandle to see if the associated entries (either a file or directory) match.
12233
12237
  *
12234
12238
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/isSameEntry)
12235
12239
  */
@@ -12280,7 +12284,7 @@ declare var FileSystemWritableFileStream: {
12280
12284
  */
12281
12285
  interface FocusEvent extends UIEvent {
12282
12286
  /**
12283
- * The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event: <table class='no-markdown'> <thead> <tr> <th scope='col'>Event name</th> <th scope='col'><code>target</code></th> <th scope='col'><code>relatedTarget</code></th> </tr> </thead> <tbody> <tr> <td>Element/blur_event</td> <td>The EventTarget losing focus</td> <td>The EventTarget receiving focus (if any).</td> </tr> <tr> <td>Element/focus_event</td> <td>The EventTarget receiving focus</td> <td>The EventTarget losing focus (if any)</td> </tr> <tr> <td>Element/focusin_event</td> <td>The EventTarget receiving focus</td> <td>The EventTarget losing focus (if any)</td> </tr> <tr> <td>Element/focusout_event</td> <td>The EventTarget losing focus</td> <td>The EventTarget receiving focus (if any)</td> </tr> </tbody> </table> Note that many elements can't have focus, which is a common reason for `relatedTarget` to be `null`.
12287
+ * The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event:
12284
12288
  *
12285
12289
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent/relatedTarget)
12286
12290
  */
@@ -12444,7 +12448,7 @@ declare var FontFaceSet: {
12444
12448
  */
12445
12449
  interface FontFaceSetLoadEvent extends Event {
12446
12450
  /**
12447
- * The **`fontfaces`** read-only property of the An array of FontFace instance.
12451
+ * The **`fontfaces`** read-only property of the FontFaceSetLoadEvent interface returns an array of FontFace instances, each of which represents a single usable font.
12448
12452
  *
12449
12453
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces)
12450
12454
  */
@@ -12555,13 +12559,38 @@ declare var FragmentDirective: {
12555
12559
  */
12556
12560
  interface GPUError {
12557
12561
  /**
12558
- * The **`message`** read-only property of the A string.
12562
+ * The **`message`** read-only property of the GPUError interface provides a human-readable message that explains why the error occurred.
12559
12563
  *
12560
12564
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message)
12561
12565
  */
12562
12566
  readonly message: string;
12563
12567
  }
12564
12568
 
12569
+ declare var GPUError: {
12570
+ prototype: GPUError;
12571
+ new(): GPUError;
12572
+ };
12573
+
12574
+ /**
12575
+ * The **`GPUPipelineError`** interface of the WebGPU API describes a pipeline failure.
12576
+ * Available only in secure contexts.
12577
+ *
12578
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUPipelineError)
12579
+ */
12580
+ interface GPUPipelineError extends DOMException {
12581
+ /**
12582
+ * The **`reason`** read-only property of the GPUPipelineError interface defines the reason the pipeline creation failed in a machine-readable way.
12583
+ *
12584
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUPipelineError/reason)
12585
+ */
12586
+ readonly reason: GPUPipelineErrorReason;
12587
+ }
12588
+
12589
+ declare var GPUPipelineError: {
12590
+ prototype: GPUPipelineError;
12591
+ new(message: string, options: GPUPipelineErrorInit): GPUPipelineError;
12592
+ };
12593
+
12565
12594
  /**
12566
12595
  * The `GainNode` interface represents a change in volume.
12567
12596
  *
@@ -12600,7 +12629,7 @@ interface Gamepad {
12600
12629
  */
12601
12630
  readonly buttons: ReadonlyArray<GamepadButton>;
12602
12631
  /**
12603
- * The **`Gamepad.connected`** property of the still connected to the system.
12632
+ * The **`Gamepad.connected`** property of the Gamepad interface returns a boolean indicating whether the gamepad is still connected to the system.
12604
12633
  *
12605
12634
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/connected)
12606
12635
  */
@@ -12618,13 +12647,13 @@ interface Gamepad {
12618
12647
  */
12619
12648
  readonly index: number;
12620
12649
  /**
12621
- * The **`Gamepad.mapping`** property of the remapped the controls on the device to a known layout.
12650
+ * The **`Gamepad.mapping`** property of the Gamepad interface returns a string indicating whether the browser has remapped the controls on the device to a known layout.
12622
12651
  *
12623
12652
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/mapping)
12624
12653
  */
12625
12654
  readonly mapping: GamepadMappingType;
12626
12655
  /**
12627
- * The **`Gamepad.timestamp`** property of the representing the last time the data for this gamepad was updated.
12656
+ * The **`Gamepad.timestamp`** property of the Gamepad interface returns a DOMHighResTimeStamp representing the last time the data for this gamepad was updated.
12628
12657
  *
12629
12658
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp)
12630
12659
  */
@@ -12649,19 +12678,19 @@ declare var Gamepad: {
12649
12678
  */
12650
12679
  interface GamepadButton {
12651
12680
  /**
12652
- * The **`GamepadButton.pressed`** property of the the button is currently pressed (`true`) or unpressed (`false`).
12681
+ * The **`GamepadButton.pressed`** property of the GamepadButton interface returns a `boolean` indicating whether the button is currently pressed (`true`) or unpressed (`false`).
12653
12682
  *
12654
12683
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/pressed)
12655
12684
  */
12656
12685
  readonly pressed: boolean;
12657
12686
  /**
12658
- * The **`touched`** property of the a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
12687
+ * The **`touched`** property of the GamepadButton interface returns a `boolean` indicating whether a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
12659
12688
  *
12660
12689
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/touched)
12661
12690
  */
12662
12691
  readonly touched: boolean;
12663
12692
  /**
12664
- * The **`GamepadButton.value`** property of the current state of analog buttons on many modern gamepads, such as the triggers.
12693
+ * The **`GamepadButton.value`** property of the GamepadButton interface returns a double value used to represent the current state of analog buttons on many modern gamepads, such as the triggers.
12665
12694
  *
12666
12695
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/value)
12667
12696
  */
@@ -12680,7 +12709,7 @@ declare var GamepadButton: {
12680
12709
  */
12681
12710
  interface GamepadEvent extends Event {
12682
12711
  /**
12683
- * The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired A Gamepad object.
12712
+ * The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired Window.gamepadconnected_event and Window.gamepaddisconnected_event events.
12684
12713
  *
12685
12714
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent/gamepad)
12686
12715
  */
@@ -13282,7 +13311,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
13282
13311
  */
13283
13312
  ping: string;
13284
13313
  /**
13285
- * The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the A string; one of the following: - `no-referrer` - : The Referer header will be omitted entirely.
13314
+ * The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the a element defining which referrer is sent when fetching the resource.
13286
13315
  *
13287
13316
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy)
13288
13317
  */
@@ -13366,7 +13395,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
13366
13395
  */
13367
13396
  ping: string;
13368
13397
  /**
13369
- * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the resource.
13398
+ * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the area element defining which referrer is sent when fetching the resource.
13370
13399
  *
13371
13400
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy)
13372
13401
  */
@@ -13553,7 +13582,7 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13553
13582
  */
13554
13583
  formTarget: string;
13555
13584
  /**
13556
- * The **`HTMLButtonElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<button>` element.
13585
+ * The **`HTMLButtonElement.labels`** read-only property returns a NodeList of the label elements associated with the button element.
13557
13586
  *
13558
13587
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels)
13559
13588
  */
@@ -13810,7 +13839,7 @@ interface HTMLDetailsElement extends HTMLElement {
13810
13839
  */
13811
13840
  name: string;
13812
13841
  /**
13813
- * The **`open`** property of the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.
13842
+ * The **`open`** property of the HTMLDetailsElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.
13814
13843
  *
13815
13844
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)
13816
13845
  */
@@ -13833,13 +13862,13 @@ declare var HTMLDetailsElement: {
13833
13862
  */
13834
13863
  interface HTMLDialogElement extends HTMLElement {
13835
13864
  /**
13836
- * The **`closedBy`** property of the A string; possible values are: - `any` - : The dialog can be dismissed with a light dismiss user action, a platform-specific user action, or a developer-specified mechanism.
13865
+ * The **`closedBy`** property of the HTMLDialogElement interface indicates the types of user actions that can be used to close the associated dialog element.
13837
13866
  *
13838
13867
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/closedBy)
13839
13868
  */
13840
13869
  closedBy: string;
13841
13870
  /**
13842
- * The **`open`** property of the `open` HTML attribute, indicating whether the dialog is available for interaction.
13871
+ * The **`open`** property of the HTMLDialogElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the dialog is available for interaction.
13843
13872
  *
13844
13873
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/open)
13845
13874
  */
@@ -13869,7 +13898,7 @@ interface HTMLDialogElement extends HTMLElement {
13869
13898
  */
13870
13899
  show(): void;
13871
13900
  /**
13872
- * The **`showModal()`** method of the of any other dialogs that might be present.
13901
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present.
13873
13902
  *
13874
13903
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
13875
13904
  */
@@ -14326,7 +14355,7 @@ interface HTMLFormElement extends HTMLElement {
14326
14355
  */
14327
14356
  autocomplete: AutoFillBase;
14328
14357
  /**
14329
- * The HTMLFormElement property **`elements`** returns an the form element.
14358
+ * The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
14330
14359
  *
14331
14360
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
14332
14361
  */
@@ -14350,7 +14379,7 @@ interface HTMLFormElement extends HTMLElement {
14350
14379
  */
14351
14380
  readonly length: number;
14352
14381
  /**
14353
- * The **`HTMLFormElement.method`** property represents the Unless explicitly specified, the default method is 'get'.
14382
+ * The **`HTMLFormElement.method`** property represents the HTTP method used to submit the form.
14354
14383
  *
14355
14384
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/method)
14356
14385
  */
@@ -14411,7 +14440,7 @@ interface HTMLFormElement extends HTMLElement {
14411
14440
  */
14412
14441
  reset(): void;
14413
14442
  /**
14414
- * The **`HTMLFormElement.submit()`** method submits a given This method is similar, but not identical to, activating a form's submit - No HTMLFormElement/submit_event event is raised.
14443
+ * The **`HTMLFormElement.submit()`** method submits a given form.
14415
14444
  *
14416
14445
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit)
14417
14446
  */
@@ -14725,7 +14754,7 @@ interface HTMLIFrameElement extends HTMLElement {
14725
14754
  */
14726
14755
  name: string;
14727
14756
  /**
14728
- * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
14757
+ * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the iframe element defining which referrer is sent when fetching the resource.
14729
14758
  *
14730
14759
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy)
14731
14760
  */
@@ -14831,13 +14860,13 @@ interface HTMLImageElement extends HTMLElement {
14831
14860
  */
14832
14861
  fetchPriority: "high" | "low" | "auto";
14833
14862
  /**
14834
- * The **`height`** property of the drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
14863
+ * The **`height`** property of the HTMLImageElement interface indicates the height at which the image is drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
14835
14864
  *
14836
14865
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/height)
14837
14866
  */
14838
14867
  height: number;
14839
14868
  /**
14840
- * The _obsolete_ **`hspace`** property of the space to leave empty on the left and right sides of the img element when laying out the page.
14869
+ * The _obsolete_ **`hspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the left and right sides of the img element when laying out the page.
14841
14870
  * @deprecated
14842
14871
  *
14843
14872
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/hspace)
@@ -14872,7 +14901,7 @@ interface HTMLImageElement extends HTMLElement {
14872
14901
  */
14873
14902
  name: string;
14874
14903
  /**
14875
- * The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in This is the height the image is if drawn with nothing constraining its height; if you don't specify a height for the image, or place the image inside a container that either limits or expressly specifies the image height, it will be rendered this tall.
14904
+ * The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in CSS pixel.
14876
14905
  *
14877
14906
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalHeight)
14878
14907
  */
@@ -14884,7 +14913,7 @@ interface HTMLImageElement extends HTMLElement {
14884
14913
  */
14885
14914
  readonly naturalWidth: number;
14886
14915
  /**
14887
- * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
14916
+ * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the img element defining which referrer is sent when fetching the resource.
14888
14917
  *
14889
14918
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/referrerPolicy)
14890
14919
  */
@@ -14908,38 +14937,38 @@ interface HTMLImageElement extends HTMLElement {
14908
14937
  */
14909
14938
  srcset: string;
14910
14939
  /**
14911
- * The **`useMap`** property on the providing the name of the client-side image map to apply to the image.
14940
+ * The **`useMap`** property on the HTMLImageElement interface reflects the value of the HTML `usemap` attribute, which is a string providing the name of the client-side image map to apply to the image.
14912
14941
  *
14913
14942
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/useMap)
14914
14943
  */
14915
14944
  useMap: string;
14916
14945
  /**
14917
- * The _obsolete_ **`vspace`** property of the to leave empty on the top and bottom of the img element when laying out the page.
14946
+ * The _obsolete_ **`vspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the top and bottom of the img element when laying out the page.
14918
14947
  * @deprecated
14919
14948
  *
14920
14949
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/vspace)
14921
14950
  */
14922
14951
  vspace: number;
14923
14952
  /**
14924
- * The **`width`** property of the drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.
14953
+ * The **`width`** property of the HTMLImageElement interface indicates the width at which an image is drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.
14925
14954
  *
14926
14955
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/width)
14927
14956
  */
14928
14957
  width: number;
14929
14958
  /**
14930
- * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the origin.
14959
+ * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the img element's left border edge relative to the root element's origin.
14931
14960
  *
14932
14961
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/x)
14933
14962
  */
14934
14963
  readonly x: number;
14935
14964
  /**
14936
- * The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the origin.
14965
+ * The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the img element's top border edge relative to the root element's origin.
14937
14966
  *
14938
14967
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/y)
14939
14968
  */
14940
14969
  readonly y: number;
14941
14970
  /**
14942
- * The **`decode()`** method of the HTMLImageElement interface returns a it to the DOM.
14971
+ * The **`decode()`** method of the HTMLImageElement interface returns a Promise that resolves once the image is decoded and it is safe to append it to the DOM.
14943
14972
  *
14944
14973
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decode)
14945
14974
  */
@@ -15072,7 +15101,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15072
15101
  */
15073
15102
  indeterminate: boolean;
15074
15103
  /**
15075
- * The **`HTMLInputElement.labels`** read-only property returns a type `hidden`, the property returns `null`.
15104
+ * The **`HTMLInputElement.labels`** read-only property returns a NodeList of the label elements associated with the input element, if the element is not hidden.
15076
15105
  *
15077
15106
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels)
15078
15107
  */
@@ -15468,7 +15497,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
15468
15497
  */
15469
15498
  media: string;
15470
15499
  /**
15471
- * The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the resource.
15500
+ * The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the link element defining which referrer is sent when fetching the resource.
15472
15501
  *
15473
15502
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy)
15474
15503
  */
@@ -15666,7 +15695,7 @@ interface HTMLMediaElement extends HTMLElement {
15666
15695
  */
15667
15696
  readonly ended: boolean;
15668
15697
  /**
15669
- * The **`HTMLMediaElement.error`** property is the there has not been an error.
15698
+ * The **`HTMLMediaElement.error`** property is the MediaError object for the most recent error, or `null` if there has not been an error.
15670
15699
  *
15671
15700
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/error)
15672
15701
  */
@@ -15768,13 +15797,13 @@ interface HTMLMediaElement extends HTMLElement {
15768
15797
  */
15769
15798
  src: string;
15770
15799
  /**
15771
- * The **`srcObject`** property of the the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
15800
+ * The **`srcObject`** property of the HTMLMediaElement interface sets or returns the object which serves as the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
15772
15801
  *
15773
15802
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/srcObject)
15774
15803
  */
15775
15804
  srcObject: MediaProvider | null;
15776
15805
  /**
15777
- * The read-only **`textTracks`** property on HTMLMediaElement objects returns a objects representing the media element's text tracks, in the same order as in the list of text tracks.
15806
+ * The read-only **`textTracks`** property on HTMLMediaElement objects returns a TextTrackList object listing all of the TextTrack objects representing the media element's text tracks, in the same order as in the list of text tracks.
15778
15807
  *
15779
15808
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/textTracks)
15780
15809
  */
@@ -15949,7 +15978,7 @@ interface HTMLMeterElement extends HTMLElement {
15949
15978
  */
15950
15979
  high: number;
15951
15980
  /**
15952
- * The **`HTMLMeterElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<meter>` element.
15981
+ * The **`HTMLMeterElement.labels`** read-only property returns a NodeList of the label elements associated with the meter element.
15953
15982
  *
15954
15983
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels)
15955
15984
  */
@@ -16097,7 +16126,7 @@ interface HTMLObjectElement extends HTMLElement {
16097
16126
  */
16098
16127
  readonly contentWindow: WindowProxy | null;
16099
16128
  /**
16100
- * The **`data`** property of the reflects the `data` HTML attribute, specifying the address of a resource's data.
16129
+ * The **`data`** property of the HTMLObjectElement interface returns a string that reflects the `data` HTML attribute, specifying the address of a resource's data.
16101
16130
  *
16102
16131
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
16103
16132
  */
@@ -16111,7 +16140,7 @@ interface HTMLObjectElement extends HTMLElement {
16111
16140
  */
16112
16141
  readonly form: HTMLFormElement | null;
16113
16142
  /**
16114
- * The **`height`** property of the reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
16143
+ * The **`height`** property of the HTMLObjectElement interface Returns a string that reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
16115
16144
  *
16116
16145
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
16117
16146
  */
@@ -16119,7 +16148,7 @@ interface HTMLObjectElement extends HTMLElement {
16119
16148
  /** @deprecated */
16120
16149
  hspace: number;
16121
16150
  /**
16122
- * The **`name`** property of the reflects the `name` HTML attribute, specifying the name of the browsing context.
16151
+ * The **`name`** property of the HTMLObjectElement interface returns a string that reflects the `name` HTML attribute, specifying the name of the browsing context.
16123
16152
  *
16124
16153
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/name)
16125
16154
  */
@@ -16127,13 +16156,13 @@ interface HTMLObjectElement extends HTMLElement {
16127
16156
  /** @deprecated */
16128
16157
  standby: string;
16129
16158
  /**
16130
- * The **`type`** property of the reflects the `type` HTML attribute, specifying the MIME type of the resource.
16159
+ * The **`type`** property of the HTMLObjectElement interface returns a string that reflects the `type` HTML attribute, specifying the MIME type of the resource.
16131
16160
  *
16132
16161
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/type)
16133
16162
  */
16134
16163
  type: string;
16135
16164
  /**
16136
- * The **`useMap`** property of the reflects the `usemap` HTML attribute, specifying a A string.
16165
+ * The **`useMap`** property of the HTMLObjectElement interface returns a string that reflects the `usemap` HTML attribute, specifying a map element to use.
16137
16166
  * @deprecated
16138
16167
  *
16139
16168
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
@@ -16154,7 +16183,7 @@ interface HTMLObjectElement extends HTMLElement {
16154
16183
  /** @deprecated */
16155
16184
  vspace: number;
16156
16185
  /**
16157
- * The **`width`** property of the reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
16186
+ * The **`width`** property of the HTMLObjectElement interface returns a string that reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
16158
16187
  *
16159
16188
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/width)
16160
16189
  */
@@ -16184,7 +16213,7 @@ interface HTMLObjectElement extends HTMLElement {
16184
16213
  */
16185
16214
  reportValidity(): boolean;
16186
16215
  /**
16187
- * The **`setCustomValidity()`** method of the element.
16216
+ * The **`setCustomValidity()`** method of the HTMLObjectElement interface sets a custom validity message for the element.
16188
16217
  *
16189
16218
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/setCustomValidity)
16190
16219
  */
@@ -16372,7 +16401,7 @@ interface HTMLOutputElement extends HTMLElement {
16372
16401
  get htmlFor(): DOMTokenList;
16373
16402
  set htmlFor(value: string);
16374
16403
  /**
16375
- * The **`HTMLOutputElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<output>` element.
16404
+ * The **`HTMLOutputElement.labels`** read-only property returns a NodeList of the label elements associated with the output element.
16376
16405
  *
16377
16406
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels)
16378
16407
  */
@@ -16531,7 +16560,7 @@ declare var HTMLPreElement: {
16531
16560
  */
16532
16561
  interface HTMLProgressElement extends HTMLElement {
16533
16562
  /**
16534
- * The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the A NodeList containing the `<label>` elements associated with the `<progress>` element.
16563
+ * The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the progress element.
16535
16564
  *
16536
16565
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/labels)
16537
16566
  */
@@ -16644,7 +16673,7 @@ interface HTMLScriptElement extends HTMLElement {
16644
16673
  */
16645
16674
  noModule: boolean;
16646
16675
  /**
16647
- * The **`referrerPolicy`** property of the `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.
16676
+ * The **`referrerPolicy`** property of the HTMLScriptElement interface reflects the HTML `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.
16648
16677
  *
16649
16678
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/referrerPolicy)
16650
16679
  */
@@ -16709,7 +16738,7 @@ interface HTMLSelectElement extends HTMLElement {
16709
16738
  */
16710
16739
  readonly form: HTMLFormElement | null;
16711
16740
  /**
16712
- * The **`HTMLSelectElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<select>` element.
16741
+ * The **`HTMLSelectElement.labels`** read-only property returns a NodeList of the label elements associated with the select element.
16713
16742
  *
16714
16743
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels)
16715
16744
  */
@@ -16751,7 +16780,7 @@ interface HTMLSelectElement extends HTMLElement {
16751
16780
  */
16752
16781
  selectedIndex: number;
16753
16782
  /**
16754
- * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the element that are currently selected.
16783
+ * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the option elements contained within the select element that are currently selected.
16755
16784
  *
16756
16785
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions)
16757
16786
  */
@@ -16805,13 +16834,13 @@ interface HTMLSelectElement extends HTMLElement {
16805
16834
  */
16806
16835
  checkValidity(): boolean;
16807
16836
  /**
16808
- * The **`HTMLSelectElement.item()`** method returns the position in the options list corresponds to the index given in the parameter, or `null` if there are none.
16837
+ * The **`HTMLSelectElement.item()`** method returns the Element corresponding to the HTMLOptionElement whose position in the options list corresponds to the index given in the parameter, or `null` if there are none.
16809
16838
  *
16810
16839
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/item)
16811
16840
  */
16812
16841
  item(index: number): HTMLOptionElement | null;
16813
16842
  /**
16814
- * The **`HTMLSelectElement.namedItem()`** method returns the whose `name` or `id` match the specified name, or `null` if no option matches.
16843
+ * The **`HTMLSelectElement.namedItem()`** method returns the HTMLOptionElement corresponding to the HTMLOptionElement whose `name` or `id` match the specified name, or `null` if no option matches.
16815
16844
  *
16816
16845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/namedItem)
16817
16846
  */
@@ -17240,7 +17269,7 @@ interface HTMLTableElement extends HTMLElement {
17240
17269
  */
17241
17270
  cellPadding: string;
17242
17271
  /**
17243
- * While you should instead use the CSS interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.
17272
+ * While you should instead use the CSS border-spacing property, the obsolete HTMLTableElement interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.
17244
17273
  * @deprecated
17245
17274
  *
17246
17275
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/cellSpacing)
@@ -17254,7 +17283,7 @@ interface HTMLTableElement extends HTMLElement {
17254
17283
  */
17255
17284
  frame: string;
17256
17285
  /**
17257
- * The read-only HTMLTableElement property **`rows`** returns a live contained within any thead, tfoot, and Although the property itself is read-only, the returned object is live and allows the modification of its content.
17286
+ * The read-only HTMLTableElement property **`rows`** returns a live HTMLCollection of all the rows in the table, including the rows contained within any thead, tfoot, and tbody elements.
17258
17287
  *
17259
17288
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/rows)
17260
17289
  */
@@ -17280,13 +17309,13 @@ interface HTMLTableElement extends HTMLElement {
17280
17309
  */
17281
17310
  readonly tBodies: HTMLCollectionOf<HTMLTableSectionElement>;
17282
17311
  /**
17283
- * The **`HTMLTableElement.tFoot`** property represents the `null` if there is no such element.
17312
+ * The **`HTMLTableElement.tFoot`** property represents the tfoot element of a table.
17284
17313
  *
17285
17314
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tFoot)
17286
17315
  */
17287
17316
  tFoot: HTMLTableSectionElement | null;
17288
17317
  /**
17289
- * The **`HTMLTableElement.tHead`** represents the `null` if there is no such element.
17318
+ * The **`HTMLTableElement.tHead`** represents the thead element of a table.
17290
17319
  *
17291
17320
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tHead)
17292
17321
  */
@@ -17299,31 +17328,31 @@ interface HTMLTableElement extends HTMLElement {
17299
17328
  */
17300
17329
  width: string;
17301
17330
  /**
17302
- * The **`HTMLTableElement.createCaption()`** method returns the If no `<caption>` element exists on the table, this method creates it, and then returns it.
17331
+ * The **`HTMLTableElement.createCaption()`** method returns the caption element associated with a given table.
17303
17332
  *
17304
17333
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createCaption)
17305
17334
  */
17306
17335
  createCaption(): HTMLTableCaptionElement;
17307
17336
  /**
17308
- * The **`createTBody()`** method of ```js-nolint createTBody() ``` None.
17337
+ * The **`createTBody()`** method of HTMLTableElement objects creates and returns a new tbody element associated with a given table.
17309
17338
  *
17310
17339
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTBody)
17311
17340
  */
17312
17341
  createTBody(): HTMLTableSectionElement;
17313
17342
  /**
17314
- * The **`createTFoot()`** method of associated with a given table.
17343
+ * The **`createTFoot()`** method of HTMLTableElement objects returns the tfoot element associated with a given table.
17315
17344
  *
17316
17345
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTFoot)
17317
17346
  */
17318
17347
  createTFoot(): HTMLTableSectionElement;
17319
17348
  /**
17320
- * The **`createTHead()`** method of associated with a given table.
17349
+ * The **`createTHead()`** method of HTMLTableElement objects returns the thead element associated with a given table.
17321
17350
  *
17322
17351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTHead)
17323
17352
  */
17324
17353
  createTHead(): HTMLTableSectionElement;
17325
17354
  /**
17326
- * The **`HTMLTableElement.deleteCaption()`** method removes the `<caption>` element associated with the table, this method does nothing.
17355
+ * The **`HTMLTableElement.deleteCaption()`** method removes the caption element from a given table.
17327
17356
  *
17328
17357
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteCaption)
17329
17358
  */
@@ -17335,13 +17364,13 @@ interface HTMLTableElement extends HTMLElement {
17335
17364
  */
17336
17365
  deleteRow(index: number): void;
17337
17366
  /**
17338
- * The **`HTMLTableElement.deleteTFoot()`** method removes the ```js-nolint deleteTFoot() ``` None.
17367
+ * The **`HTMLTableElement.deleteTFoot()`** method removes the tfoot element from a given table.
17339
17368
  *
17340
17369
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTFoot)
17341
17370
  */
17342
17371
  deleteTFoot(): void;
17343
17372
  /**
17344
- * The **`HTMLTableElement.deleteTHead()`** removes the ```js-nolint deleteTHead() ``` None.
17373
+ * The **`HTMLTableElement.deleteTHead()`** removes the thead element from a given table.
17345
17374
  *
17346
17375
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTHead)
17347
17376
  */
@@ -17500,7 +17529,7 @@ interface HTMLTableSectionElement extends HTMLElement {
17500
17529
  */
17501
17530
  deleteRow(index: number): void;
17502
17531
  /**
17503
- * The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or ```js-nolint insertRow() insertRow(index) ``` - `index` [MISSING: optional_inline] - : The row index of the new row.
17532
+ * The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or tbody), then returns a reference to this new row.
17504
17533
  *
17505
17534
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/insertRow)
17506
17535
  */
@@ -17523,7 +17552,7 @@ declare var HTMLTableSectionElement: {
17523
17552
  */
17524
17553
  interface HTMLTemplateElement extends HTMLElement {
17525
17554
  /**
17526
- * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a A DocumentFragment.
17555
+ * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a DocumentFragment).
17527
17556
  *
17528
17557
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
17529
17558
  */
@@ -17606,7 +17635,7 @@ interface HTMLTextAreaElement extends HTMLElement {
17606
17635
  */
17607
17636
  readonly form: HTMLFormElement | null;
17608
17637
  /**
17609
- * The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the A NodeList containing the `<label>` elements associated with the `<textArea>` element.
17638
+ * The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the textArea element.
17610
17639
  *
17611
17640
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/labels)
17612
17641
  */
@@ -17654,7 +17683,7 @@ interface HTMLTextAreaElement extends HTMLElement {
17654
17683
  */
17655
17684
  rows: number;
17656
17685
  /**
17657
- * <!-- --> The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
17686
+ * The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
17658
17687
  *
17659
17688
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection)
17660
17689
  */
@@ -17832,7 +17861,7 @@ interface HTMLTrackElement extends HTMLElement {
17832
17861
  */
17833
17862
  label: string;
17834
17863
  /**
17835
- * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state: 0.
17864
+ * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state:
17836
17865
  *
17837
17866
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState)
17838
17867
  */
@@ -17976,7 +18005,7 @@ interface HTMLVideoElement extends HTMLMediaElement {
17976
18005
  */
17977
18006
  cancelVideoFrameCallback(handle: number): void;
17978
18007
  /**
17979
- * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a frames have been lost.
18008
+ * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a VideoPlaybackQuality object containing metrics including how many frames have been lost.
17980
18009
  *
17981
18010
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality)
17982
18011
  */
@@ -18011,13 +18040,13 @@ declare var HTMLVideoElement: {
18011
18040
  */
18012
18041
  interface HashChangeEvent extends Event {
18013
18042
  /**
18014
- * The **`newURL`** read-only property of the navigating.
18043
+ * The **`newURL`** read-only property of the HashChangeEvent interface returns the new URL to which the window is navigating.
18015
18044
  *
18016
18045
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/newURL)
18017
18046
  */
18018
18047
  readonly newURL: string;
18019
18048
  /**
18020
- * The **`oldURL`** read-only property of the was navigated.
18049
+ * The **`oldURL`** read-only property of the HashChangeEvent interface returns the previous URL from which the window was navigated.
18021
18050
  *
18022
18051
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/oldURL)
18023
18052
  */
@@ -18187,19 +18216,19 @@ declare var History: {
18187
18216
  */
18188
18217
  interface IDBCursor {
18189
18218
  /**
18190
- * The **`direction`** read-only property of the direction of traversal of the cursor (set using section below for possible values.
18219
+ * The **`direction`** read-only property of the IDBCursor interface is a string that returns the direction of traversal of the cursor (set using IDBObjectStore.openCursor for example).
18191
18220
  *
18192
18221
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/direction)
18193
18222
  */
18194
18223
  readonly direction: IDBCursorDirection;
18195
18224
  /**
18196
- * The **`key`** read-only property of the position.
18225
+ * The **`key`** read-only property of the IDBCursor interface returns the key for the record at the cursor's position.
18197
18226
  *
18198
18227
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/key)
18199
18228
  */
18200
18229
  readonly key: IDBValidKey;
18201
18230
  /**
18202
- * The **`primaryKey`** read-only property of the cursor is currently being iterated or has iterated outside its range, this is set to undefined.
18231
+ * The **`primaryKey`** read-only property of the IDBCursor interface returns the cursor's current effective key.
18203
18232
  *
18204
18233
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/primaryKey)
18205
18234
  */
@@ -18211,7 +18240,7 @@ interface IDBCursor {
18211
18240
  */
18212
18241
  readonly request: IDBRequest;
18213
18242
  /**
18214
- * The **`source`** read-only property of the null or throws an exception, even if the cursor is currently being iterated, has iterated past its end, or its transaction is not active.
18243
+ * The **`source`** read-only property of the IDBCursor interface returns the IDBObjectStore or IDBIndex that the cursor is iterating over.
18215
18244
  *
18216
18245
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/source)
18217
18246
  */
@@ -18229,7 +18258,7 @@ interface IDBCursor {
18229
18258
  */
18230
18259
  continue(key?: IDBValidKey): void;
18231
18260
  /**
18232
- * The **`continuePrimaryKey()`** method of the matches the key parameter as well as whose primary key matches the primary key parameter.
18261
+ * The **`continuePrimaryKey()`** method of the IDBCursor interface advances the cursor to the item whose key matches the key parameter as well as whose primary key matches the primary key parameter.
18233
18262
  *
18234
18263
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continuePrimaryKey)
18235
18264
  */
@@ -18260,7 +18289,7 @@ declare var IDBCursor: {
18260
18289
  */
18261
18290
  interface IDBCursorWithValue extends IDBCursor {
18262
18291
  /**
18263
- * The **`value`** read-only property of the whatever that is.
18292
+ * The **`value`** read-only property of the IDBCursorWithValue interface returns the value of the current cursor, whatever that is.
18264
18293
  *
18265
18294
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue/value)
18266
18295
  */
@@ -18292,7 +18321,7 @@ interface IDBDatabase extends EventTarget {
18292
18321
  */
18293
18322
  readonly name: string;
18294
18323
  /**
18295
- * The **`objectStoreNames`** read-only property of the list of the names of the object stores currently in the connected database.
18324
+ * The **`objectStoreNames`** read-only property of the IDBDatabase interface is a DOMStringList containing a list of the names of the object stores currently in the connected database.
18296
18325
  *
18297
18326
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
18298
18327
  */
@@ -18316,13 +18345,13 @@ interface IDBDatabase extends EventTarget {
18316
18345
  */
18317
18346
  close(): void;
18318
18347
  /**
18319
- * The **`createObjectStore()`** method of the The method takes the name of the store as well as a parameter object that lets you define important optional properties.
18348
+ * The **`createObjectStore()`** method of the IDBDatabase interface creates and returns a new IDBObjectStore.
18320
18349
  *
18321
18350
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/createObjectStore)
18322
18351
  */
18323
18352
  createObjectStore(name: string, options?: IDBObjectStoreParameters): IDBObjectStore;
18324
18353
  /**
18325
- * The **`deleteObjectStore()`** method of the the connected database, along with any indexes that reference it.
18354
+ * The **`deleteObjectStore()`** method of the IDBDatabase interface destroys the object store with the given name in the connected database, along with any indexes that reference it.
18326
18355
  *
18327
18356
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/deleteObjectStore)
18328
18357
  */
@@ -18363,7 +18392,7 @@ interface IDBFactory {
18363
18392
  */
18364
18393
  databases(): Promise<IDBDatabaseInfo[]>;
18365
18394
  /**
18366
- * The **`deleteDatabase()`** method of the returns an IDBOpenDBRequest object immediately, and performs the deletion operation asynchronously.
18395
+ * The **`deleteDatabase()`** method of the IDBFactory interface requests the deletion of a database.
18367
18396
  *
18368
18397
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/deleteDatabase)
18369
18398
  */
@@ -18394,7 +18423,7 @@ interface IDBIndex {
18394
18423
  */
18395
18424
  readonly keyPath: string | string[];
18396
18425
  /**
18397
- * The **`multiEntry`** read-only property of the behaves when the result of evaluating the index's key path yields an array.
18426
+ * The **`multiEntry`** read-only property of the IDBIndex interface returns a boolean value that affects how the index behaves when the result of evaluating the index's key path yields an array.
18398
18427
  *
18399
18428
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry)
18400
18429
  */
@@ -18424,7 +18453,7 @@ interface IDBIndex {
18424
18453
  */
18425
18454
  count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
18426
18455
  /**
18427
- * The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an If a value is found, then a structured clone of it is created and set as the `result` of the request object: this returns the record the key is associated with.
18456
+ * The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an IDBKeyRange.
18428
18457
  *
18429
18458
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/get)
18430
18459
  */
@@ -18442,7 +18471,7 @@ interface IDBIndex {
18442
18471
  */
18443
18472
  getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18444
18473
  /**
18445
- * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an If a primary key is found, it is set as the `result` of the request object.
18474
+ * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
18446
18475
  *
18447
18476
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getKey)
18448
18477
  */
@@ -18454,7 +18483,7 @@ interface IDBIndex {
18454
18483
  */
18455
18484
  openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
18456
18485
  /**
18457
- * The **`openKeyCursor()`** method of the a separate thread, creates a cursor over the specified key range, as arranged by this index.
18486
+ * The **`openKeyCursor()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
18458
18487
  *
18459
18488
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openKeyCursor)
18460
18489
  */
@@ -18473,25 +18502,25 @@ declare var IDBIndex: {
18473
18502
  */
18474
18503
  interface IDBKeyRange {
18475
18504
  /**
18476
- * The **`lower`** read-only property of the The lower bound of the key range (can be any type.) The following example illustrates how you'd use a key range.
18505
+ * The **`lower`** read-only property of the IDBKeyRange interface returns the lower bound of the key range.
18477
18506
  *
18478
18507
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lower)
18479
18508
  */
18480
18509
  readonly lower: any;
18481
18510
  /**
18482
- * The **`lowerOpen`** read-only property of the lower-bound value is included in the key range.
18511
+ * The **`lowerOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the lower-bound value is included in the key range.
18483
18512
  *
18484
18513
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerOpen)
18485
18514
  */
18486
18515
  readonly lowerOpen: boolean;
18487
18516
  /**
18488
- * The **`upper`** read-only property of the The upper bound of the key range (can be any type.) The following example illustrates how you'd use a key range.
18517
+ * The **`upper`** read-only property of the IDBKeyRange interface returns the upper bound of the key range.
18489
18518
  *
18490
18519
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upper)
18491
18520
  */
18492
18521
  readonly upper: any;
18493
18522
  /**
18494
- * The **`upperOpen`** read-only property of the upper-bound value is included in the key range.
18523
+ * The **`upperOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the upper-bound value is included in the key range.
18495
18524
  *
18496
18525
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperOpen)
18497
18526
  */
@@ -18514,7 +18543,7 @@ declare var IDBKeyRange: {
18514
18543
  */
18515
18544
  bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
18516
18545
  /**
18517
- * The **`lowerBound()`** static method of the By default, it includes the lower endpoint value and is closed.
18546
+ * The **`lowerBound()`** static method of the IDBKeyRange interface creates a new key range with only a lower bound.
18518
18547
  *
18519
18548
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
18520
18549
  */
@@ -18526,7 +18555,7 @@ declare var IDBKeyRange: {
18526
18555
  */
18527
18556
  only(value: any): IDBKeyRange;
18528
18557
  /**
18529
- * The **`upperBound()`** static method of the it includes the upper endpoint value and is closed.
18558
+ * The **`upperBound()`** static method of the IDBKeyRange interface creates a new upper-bound key range.
18530
18559
  *
18531
18560
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
18532
18561
  */
@@ -18540,19 +18569,19 @@ declare var IDBKeyRange: {
18540
18569
  */
18541
18570
  interface IDBObjectStore {
18542
18571
  /**
18543
- * The **`autoIncrement`** read-only property of the for this object store.
18572
+ * The **`autoIncrement`** read-only property of the IDBObjectStore interface returns the value of the auto increment flag for this object store.
18544
18573
  *
18545
18574
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/autoIncrement)
18546
18575
  */
18547
18576
  readonly autoIncrement: boolean;
18548
18577
  /**
18549
- * The **`indexNames`** read-only property of the in this object store.
18578
+ * The **`indexNames`** read-only property of the IDBObjectStore interface returns a list of the names of indexes on objects in this object store.
18550
18579
  *
18551
18580
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/indexNames)
18552
18581
  */
18553
18582
  readonly indexNames: DOMStringList;
18554
18583
  /**
18555
- * The **`keyPath`** read-only property of the If this property is null, the application must provide a key for each modification operation.
18584
+ * The **`keyPath`** read-only property of the IDBObjectStore interface returns the key path of this object store.
18556
18585
  *
18557
18586
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
18558
18587
  */
@@ -18564,7 +18593,7 @@ interface IDBObjectStore {
18564
18593
  */
18565
18594
  name: string;
18566
18595
  /**
18567
- * The **`transaction`** read-only property of the object store belongs.
18596
+ * The **`transaction`** read-only property of the IDBObjectStore interface returns the transaction object to which this object store belongs.
18568
18597
  *
18569
18598
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/transaction)
18570
18599
  */
@@ -18582,25 +18611,25 @@ interface IDBObjectStore {
18582
18611
  */
18583
18612
  clear(): IDBRequest<undefined>;
18584
18613
  /**
18585
- * The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or of records in the store.
18614
+ * The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or IDBKeyRange.
18586
18615
  *
18587
18616
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/count)
18588
18617
  */
18589
18618
  count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
18590
18619
  /**
18591
- * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.
18620
+ * The **`createIndex()`** method of the IDBObjectStore interface creates and returns a new IDBIndex object in the connected database.
18592
18621
  *
18593
18622
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)
18594
18623
  */
18595
18624
  createIndex(name: string, keyPath: string | string[], options?: IDBIndexParameters): IDBIndex;
18596
18625
  /**
18597
- * The **`delete()`** method of the and, in a separate thread, deletes the specified record or records.
18626
+ * The **`delete()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, deletes the specified record or records.
18598
18627
  *
18599
18628
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/delete)
18600
18629
  */
18601
18630
  delete(query: IDBValidKey | IDBKeyRange): IDBRequest<undefined>;
18602
18631
  /**
18603
- * The **`deleteIndex()`** method of the the connected database, used during a version upgrade.
18632
+ * The **`deleteIndex()`** method of the IDBObjectStore interface destroys the index with the specified name in the connected database, used during a version upgrade.
18604
18633
  *
18605
18634
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/deleteIndex)
18606
18635
  */
@@ -18612,7 +18641,7 @@ interface IDBObjectStore {
18612
18641
  */
18613
18642
  get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;
18614
18643
  /**
18615
- * The **`getAll()`** method of the containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
18644
+ * The **`getAll()`** method of the IDBObjectStore interface returns an IDBRequest object containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
18616
18645
  *
18617
18646
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
18618
18647
  */
@@ -18624,7 +18653,7 @@ interface IDBObjectStore {
18624
18653
  */
18625
18654
  getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18626
18655
  /**
18627
- * The **`getKey()`** method of the and, in a separate thread, returns the key selected by the specified query.
18656
+ * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
18628
18657
  *
18629
18658
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getKey)
18630
18659
  */
@@ -18636,13 +18665,13 @@ interface IDBObjectStore {
18636
18665
  */
18637
18666
  index(name: string): IDBIndex;
18638
18667
  /**
18639
- * The **`openCursor()`** method of the and, in a separate thread, returns a new IDBCursorWithValue object.
18668
+ * The **`openCursor()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns a new IDBCursorWithValue object.
18640
18669
  *
18641
18670
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openCursor)
18642
18671
  */
18643
18672
  openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
18644
18673
  /**
18645
- * The **`openKeyCursor()`** method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.
18674
+ * The **`openKeyCursor()`** method of the IDBObjectStore interface returns an IDBRequest object whose result will be set to an IDBCursor that can be used to iterate through matching results.
18646
18675
  *
18647
18676
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openKeyCursor)
18648
18677
  */
@@ -18698,7 +18727,7 @@ interface IDBRequestEventMap {
18698
18727
  */
18699
18728
  interface IDBRequest<T = any> extends EventTarget {
18700
18729
  /**
18701
- * The **`error`** read-only property of the request.
18730
+ * The **`error`** read-only property of the IDBRequest interface returns the error in the event of an unsuccessful request.
18702
18731
  *
18703
18732
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error)
18704
18733
  */
@@ -18708,19 +18737,19 @@ interface IDBRequest<T = any> extends EventTarget {
18708
18737
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/success_event) */
18709
18738
  onsuccess: ((this: IDBRequest<T>, ev: Event) => any) | null;
18710
18739
  /**
18711
- * The **`readyState`** read-only property of the Every request starts in the `pending` state.
18740
+ * The **`readyState`** read-only property of the IDBRequest interface returns the state of the request.
18712
18741
  *
18713
18742
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/readyState)
18714
18743
  */
18715
18744
  readonly readyState: IDBRequestReadyState;
18716
18745
  /**
18717
- * The **`result`** read-only property of the any - `InvalidStateError` DOMException - : Thrown when attempting to access the property if the request is not completed, and therefore the result is not available.
18746
+ * The **`result`** read-only property of the IDBRequest interface returns the result of the request.
18718
18747
  *
18719
18748
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/result)
18720
18749
  */
18721
18750
  readonly result: T;
18722
18751
  /**
18723
- * The **`source`** read-only property of the Index or an object store.
18752
+ * The **`source`** read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store.
18724
18753
  *
18725
18754
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/source)
18726
18755
  */
@@ -18773,13 +18802,13 @@ interface IDBTransaction extends EventTarget {
18773
18802
  */
18774
18803
  readonly error: DOMException | null;
18775
18804
  /**
18776
- * The **`mode`** read-only property of the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.
18805
+ * The **`mode`** read-only property of the IDBTransaction interface returns the current mode for accessing the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.
18777
18806
  *
18778
18807
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/mode)
18779
18808
  */
18780
18809
  readonly mode: IDBTransactionMode;
18781
18810
  /**
18782
- * The **`objectStoreNames`** read-only property of the of IDBObjectStore objects.
18811
+ * The **`objectStoreNames`** read-only property of the IDBTransaction interface returns a DOMStringList of names of IDBObjectStore objects.
18783
18812
  *
18784
18813
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)
18785
18814
  */
@@ -18803,7 +18832,7 @@ interface IDBTransaction extends EventTarget {
18803
18832
  */
18804
18833
  commit(): void;
18805
18834
  /**
18806
- * The **`objectStore()`** method of the added to the scope of this transaction.
18835
+ * The **`objectStore()`** method of the IDBTransaction interface returns an object store that has already been added to the scope of this transaction.
18807
18836
  *
18808
18837
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStore)
18809
18838
  */
@@ -18826,13 +18855,13 @@ declare var IDBTransaction: {
18826
18855
  */
18827
18856
  interface IDBVersionChangeEvent extends Event {
18828
18857
  /**
18829
- * The **`newVersion`** read-only property of the database.
18858
+ * The **`newVersion`** read-only property of the IDBVersionChangeEvent interface returns the new version number of the database.
18830
18859
  *
18831
18860
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/newVersion)
18832
18861
  */
18833
18862
  readonly newVersion: number | null;
18834
18863
  /**
18835
- * The **`oldVersion`** read-only property of the database.
18864
+ * The **`oldVersion`** read-only property of the IDBVersionChangeEvent interface returns the old version number of the database.
18836
18865
  *
18837
18866
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/oldVersion)
18838
18867
  */
@@ -18926,7 +18955,7 @@ declare var ImageBitmap: {
18926
18955
  */
18927
18956
  interface ImageBitmapRenderingContext {
18928
18957
  /**
18929
- * The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the A HTMLCanvasElement or OffscreenCanvas object.
18958
+ * The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement or OffscreenCanvas object that is associated with the given context.
18930
18959
  *
18931
18960
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/canvas)
18932
18961
  */
@@ -18952,7 +18981,7 @@ declare var ImageBitmapRenderingContext: {
18952
18981
  */
18953
18982
  interface ImageCapture {
18954
18983
  /**
18955
- * The **`track`** read-only property of the A MediaStreamTrack object.
18984
+ * The **`track`** read-only property of the ImageCapture interface returns a reference to the MediaStreamTrack passed to the ImageCapture.ImageCapture constructor.
18956
18985
  *
18957
18986
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/track)
18958
18987
  */
@@ -18970,13 +18999,13 @@ interface ImageCapture {
18970
18999
  */
18971
19000
  getPhotoSettings(): Promise<PhotoSettings>;
18972
19001
  /**
18973
- * The **`grabFrame()`** method of the a ImageBitmap containing the snapshot.
19002
+ * The **`grabFrame()`** method of the ImageCapture interface takes a snapshot of the live video in a MediaStreamTrack and returns a Promise that resolves with a ImageBitmap containing the snapshot.
18974
19003
  *
18975
19004
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/grabFrame)
18976
19005
  */
18977
19006
  grabFrame(): Promise<ImageBitmap>;
18978
19007
  /**
18979
- * The **`takePhoto()`** method of the device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
19008
+ * The **`takePhoto()`** method of the ImageCapture interface takes a single exposure using the video capture device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
18980
19009
  *
18981
19010
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/takePhoto)
18982
19011
  */
@@ -19001,7 +19030,7 @@ interface ImageData {
19001
19030
  */
19002
19031
  readonly colorSpace: PredefinedColorSpace;
19003
19032
  /**
19004
- * The readonly **`ImageData.data`** property returns a pixel data.
19033
+ * The readonly **`ImageData.data`** property returns a Uint8ClampedArray or Float16Array that contains the ImageData object's pixel data.
19005
19034
  *
19006
19035
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)
19007
19036
  */
@@ -19195,25 +19224,25 @@ declare var InputDeviceInfo: {
19195
19224
  */
19196
19225
  interface InputEvent extends UIEvent {
19197
19226
  /**
19198
- * The **`data`** read-only property of the characters.
19227
+ * The **`data`** read-only property of the InputEvent interface returns a string with inserted characters.
19199
19228
  *
19200
19229
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/data)
19201
19230
  */
19202
19231
  readonly data: string | null;
19203
19232
  /**
19204
- * The **`dataTransfer`** read-only property of the containing information about richtext or plaintext data being added to or removed from editable content.
19233
+ * The **`dataTransfer`** read-only property of the InputEvent interface returns a DataTransfer object containing information about richtext or plaintext data being added to or removed from editable content.
19205
19234
  *
19206
19235
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/dataTransfer)
19207
19236
  */
19208
19237
  readonly dataTransfer: DataTransfer | null;
19209
19238
  /**
19210
- * The **`inputType`** read-only property of the Possible changes include for example inserting, deleting, and formatting text.
19239
+ * The **`inputType`** read-only property of the InputEvent interface returns the type of change made to editable content.
19211
19240
  *
19212
19241
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/inputType)
19213
19242
  */
19214
19243
  readonly inputType: string;
19215
19244
  /**
19216
- * The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after A boolean.
19245
+ * The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after Element/compositionstart_event and before Element/compositionend_event.
19217
19246
  *
19218
19247
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/isComposing)
19219
19248
  */
@@ -19369,7 +19398,7 @@ interface KeyboardEvent extends UIEvent {
19369
19398
  */
19370
19399
  readonly altKey: boolean;
19371
19400
  /**
19372
- * The **`charCode`** read-only property of the pressed during a Element/keypress_event event.
19401
+ * The **`charCode`** read-only property of the KeyboardEvent interface returns the Unicode value of a character key pressed during a Element/keypress_event event.
19373
19402
  * @deprecated
19374
19403
  *
19375
19404
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/charCode)
@@ -19419,7 +19448,7 @@ interface KeyboardEvent extends UIEvent {
19419
19448
  */
19420
19449
  readonly metaKey: boolean;
19421
19450
  /**
19422
- * The **`repeat`** read-only property of the `true` if the given key is being held down such that it is automatically repeating.
19451
+ * The **`repeat`** read-only property of the KeyboardEvent interface returns a boolean value that is `true` if the given key is being held down such that it is automatically repeating.
19423
19452
  *
19424
19453
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/repeat)
19425
19454
  */
@@ -19571,7 +19600,7 @@ interface LinkStyle {
19571
19600
  */
19572
19601
  interface Location {
19573
19602
  /**
19574
- * The **`ancestorOrigins`** read-only property of the Location interface is a static browsing contexts of the document associated with the given Location object.
19603
+ * The **`ancestorOrigins`** read-only property of the Location interface is a static DOMStringList containing, in reverse order, the origins of all ancestor browsing contexts of the document associated with the given Location object.
19575
19604
  *
19576
19605
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins)
19577
19606
  */
@@ -19670,7 +19699,7 @@ interface Lock {
19670
19699
  */
19671
19700
  readonly mode: LockMode;
19672
19701
  /**
19673
- * The **`name`** read-only property of the Lock interface returns the _name_ passed to The name of a lock is passed by script when the lock is requested.
19702
+ * The **`name`** read-only property of the Lock interface returns the _name_ passed to LockManager.request selected when the lock was requested.
19674
19703
  *
19675
19704
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/name)
19676
19705
  */
@@ -20091,7 +20120,7 @@ declare var MediaDevices: {
20091
20120
  */
20092
20121
  interface MediaElementAudioSourceNode extends AudioNode {
20093
20122
  /**
20094
- * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the receiving audio.
20123
+ * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the HTMLMediaElement that contains the audio track from which the node is receiving audio.
20095
20124
  *
20096
20125
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaElementAudioSourceNode/mediaElement)
20097
20126
  */
@@ -20288,7 +20317,7 @@ interface MediaKeyStatusMap {
20288
20317
  */
20289
20318
  get(keyId: BufferSource): MediaKeyStatus | undefined;
20290
20319
  /**
20291
- * The **`has()`** method of the whether a value has been associated with the given key.
20320
+ * The **`has()`** method of the MediaKeyStatusMap interface returns a Boolean, asserting whether a value has been associated with the given key.
20292
20321
  *
20293
20322
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/has)
20294
20323
  */
@@ -20315,13 +20344,13 @@ interface MediaKeySystemAccess {
20315
20344
  */
20316
20345
  readonly keySystem: string;
20317
20346
  /**
20318
- * The `MediaKeySystemAccess.createMediaKeys()` method returns a ```js-nolint createMediaKeys() ``` None.
20347
+ * The `MediaKeySystemAccess.createMediaKeys()` method returns a Promise that resolves to a new MediaKeys object.
20319
20348
  *
20320
20349
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/createMediaKeys)
20321
20350
  */
20322
20351
  createMediaKeys(): Promise<MediaKeys>;
20323
20352
  /**
20324
- * The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options: - `initDataTypes` [MISSING: ReadOnlyInline] - : Returns a list of supported initialization data type names.
20353
+ * The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options:
20325
20354
  *
20326
20355
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/getConfiguration)
20327
20356
  */
@@ -20417,25 +20446,25 @@ declare var MediaList: {
20417
20446
  */
20418
20447
  interface MediaMetadata {
20419
20448
  /**
20420
- * The **`album`** property of the collection containing the media to be played.
20449
+ * The **`album`** property of the MediaMetadata interface returns or sets the name of the album or collection containing the media to be played.
20421
20450
  *
20422
20451
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/album)
20423
20452
  */
20424
20453
  album: string;
20425
20454
  /**
20426
- * The **`artist`** property of the creator, etc., of the media to be played.
20455
+ * The **`artist`** property of the MediaMetadata interface returns or sets the name of the artist, group, creator, etc., of the media to be played.
20427
20456
  *
20428
20457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artist)
20429
20458
  */
20430
20459
  artist: string;
20431
20460
  /**
20432
- * The **`artwork`** property of the objects representing images associated with playing media.
20461
+ * The **`artwork`** property of the MediaMetadata interface returns or sets an array of objects representing images associated with playing media.
20433
20462
  *
20434
20463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artwork)
20435
20464
  */
20436
20465
  artwork: ReadonlyArray<MediaImage>;
20437
20466
  /**
20438
- * The **`title`** property of the played.
20467
+ * The **`title`** property of the MediaMetadata interface returns or sets the title of the media to be played.
20439
20468
  *
20440
20469
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/title)
20441
20470
  */
@@ -20458,13 +20487,13 @@ interface MediaQueryListEventMap {
20458
20487
  */
20459
20488
  interface MediaQueryList extends EventTarget {
20460
20489
  /**
20461
- * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
20490
+ * The **`matches`** read-only property of the MediaQueryList interface is a boolean value that returns `true` if the document currently matches the media query list, or `false` if not.
20462
20491
  *
20463
20492
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/matches)
20464
20493
  */
20465
20494
  readonly matches: boolean;
20466
20495
  /**
20467
- * The **`media`** read-only property of the serialized media query.
20496
+ * The **`media`** read-only property of the MediaQueryList interface is a string representing a serialized media query.
20468
20497
  *
20469
20498
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/media)
20470
20499
  */
@@ -20472,14 +20501,14 @@ interface MediaQueryList extends EventTarget {
20472
20501
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/change_event) */
20473
20502
  onchange: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null;
20474
20503
  /**
20475
- * The deprecated **`addListener()`** method of the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
20504
+ * The deprecated **`addListener()`** method of the MediaQueryList interface adds a listener to the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
20476
20505
  * @deprecated
20477
20506
  *
20478
20507
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/addListener)
20479
20508
  */
20480
20509
  addListener(callback: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null): void;
20481
20510
  /**
20482
- * The **`removeListener()`** method of the `MediaQueryListener`.
20511
+ * The **`removeListener()`** method of the MediaQueryList interface removes a listener from the `MediaQueryListener`.
20483
20512
  * @deprecated
20484
20513
  *
20485
20514
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/removeListener)
@@ -20503,13 +20532,13 @@ declare var MediaQueryList: {
20503
20532
  */
20504
20533
  interface MediaQueryListEvent extends Event {
20505
20534
  /**
20506
- * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
20535
+ * The **`matches`** read-only property of the MediaQueryListEvent interface is a boolean value that is `true` if the document currently matches the media query list, or `false` if not.
20507
20536
  *
20508
20537
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/matches)
20509
20538
  */
20510
20539
  readonly matches: boolean;
20511
20540
  /**
20512
- * The **`media`** read-only property of the a serialized media query.
20541
+ * The **`media`** read-only property of the MediaQueryListEvent interface is a string representing a serialized media query.
20513
20542
  *
20514
20543
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/media)
20515
20544
  */
@@ -20585,7 +20614,7 @@ interface MediaRecorder extends EventTarget {
20585
20614
  */
20586
20615
  pause(): void;
20587
20616
  /**
20588
- * The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a called.
20617
+ * The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a Blob object of the captured media as it was when the method was called.
20589
20618
  *
20590
20619
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/requestData)
20591
20620
  */
@@ -20638,7 +20667,7 @@ interface MediaSession {
20638
20667
  */
20639
20668
  metadata: MediaMetadata | null;
20640
20669
  /**
20641
- * The **`playbackState`** property of the playing or paused.
20670
+ * The **`playbackState`** property of the MediaSession interface indicates whether the current media session is playing or paused.
20642
20671
  *
20643
20672
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/playbackState)
20644
20673
  */
@@ -20662,7 +20691,7 @@ interface MediaSession {
20662
20691
  */
20663
20692
  setMicrophoneActive(active: boolean): Promise<void>;
20664
20693
  /**
20665
- * The **`setPositionState()`** method of the document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.
20694
+ * The **`setPositionState()`** method of the MediaSession interface is used to update the current document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.
20666
20695
  *
20667
20696
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setPositionState)
20668
20697
  */
@@ -20687,7 +20716,7 @@ interface MediaSourceEventMap {
20687
20716
  */
20688
20717
  interface MediaSource extends EventTarget {
20689
20718
  /**
20690
- * The **`activeSourceBuffers`** read-only property of the containing a subset of the SourceBuffer objects contained within providing the selected video track, enabled audio tracks, and shown/hidden text tracks.
20719
+ * The **`activeSourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing a subset of the SourceBuffer objects contained within MediaSource.sourceBuffers — the list of objects providing the selected video track, enabled audio tracks, and shown/hidden text tracks.
20691
20720
  *
20692
20721
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/activeSourceBuffers)
20693
20722
  */
@@ -20705,31 +20734,31 @@ interface MediaSource extends EventTarget {
20705
20734
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
20706
20735
  onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
20707
20736
  /**
20708
- * The **`readyState`** read-only property of the current `MediaSource`.
20737
+ * The **`readyState`** read-only property of the MediaSource interface returns an enum representing the state of the current `MediaSource`.
20709
20738
  *
20710
20739
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState)
20711
20740
  */
20712
20741
  readonly readyState: ReadyState;
20713
20742
  /**
20714
- * The **`sourceBuffers`** read-only property of the containing the list of SourceBuffer objects associated with this `MediaSource`.
20743
+ * The **`sourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing the list of SourceBuffer objects associated with this `MediaSource`.
20715
20744
  *
20716
20745
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceBuffers)
20717
20746
  */
20718
20747
  readonly sourceBuffers: SourceBufferList;
20719
20748
  /**
20720
- * The **`addSourceBuffer()`** method of the given MIME type and adds it to the `MediaSource`'s `SourceBuffer` is also returned.
20749
+ * The **`addSourceBuffer()`** method of the MediaSource interface creates a new SourceBuffer of the given MIME type and adds it to the `MediaSource`'s MediaSource.sourceBuffers list.
20721
20750
  *
20722
20751
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/addSourceBuffer)
20723
20752
  */
20724
20753
  addSourceBuffer(type: string): SourceBuffer;
20725
20754
  /**
20726
- * The **`clearLiveSeekableRange()`** method of the to MediaSource.setLiveSeekableRange().
20755
+ * The **`clearLiveSeekableRange()`** method of the MediaSource interface clears a seekable range previously set with a call to MediaSource.setLiveSeekableRange().
20727
20756
  *
20728
20757
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/clearLiveSeekableRange)
20729
20758
  */
20730
20759
  clearLiveSeekableRange(): void;
20731
20760
  /**
20732
- * The **`endOfStream()`** method of the ```js-nolint endOfStream() endOfStream(endOfStreamError) ``` - `endOfStreamError` MISSING: optional_inline] - : A string representing an error to throw when the end of the stream is reached.
20761
+ * The **`endOfStream()`** method of the MediaSource interface signals the end of the stream.
20733
20762
  *
20734
20763
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/endOfStream)
20735
20764
  */
@@ -20741,7 +20770,7 @@ interface MediaSource extends EventTarget {
20741
20770
  */
20742
20771
  removeSourceBuffer(sourceBuffer: SourceBuffer): void;
20743
20772
  /**
20744
- * The **`setLiveSeekableRange()`** method of the media element.
20773
+ * The **`setLiveSeekableRange()`** method of the MediaSource interface sets the range that the user can seek to in the media element.
20745
20774
  *
20746
20775
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/setLiveSeekableRange)
20747
20776
  */
@@ -20794,7 +20823,7 @@ interface MediaStreamEventMap {
20794
20823
  */
20795
20824
  interface MediaStream extends EventTarget {
20796
20825
  /**
20797
- * The **`active`** read-only property of the `true` if the stream is currently active; otherwise, it returns `false`.
20826
+ * The **`active`** read-only property of the MediaStream interface returns a Boolean value which is `true` if the stream is currently active; otherwise, it returns `false`.
20798
20827
  *
20799
20828
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/active)
20800
20829
  */
@@ -20822,7 +20851,7 @@ interface MediaStream extends EventTarget {
20822
20851
  */
20823
20852
  clone(): MediaStream;
20824
20853
  /**
20825
- * The **`getAudioTracks()`** method of the stream's track set where MediaStreamTrack.kind is `audio`.
20854
+ * The **`getAudioTracks()`** method of the MediaStream interface returns a sequence that represents all the MediaStreamTrack objects in this stream's track set where MediaStreamTrack.kind is `audio`.
20826
20855
  *
20827
20856
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getAudioTracks)
20828
20857
  */
@@ -20834,19 +20863,19 @@ interface MediaStream extends EventTarget {
20834
20863
  */
20835
20864
  getTrackById(trackId: string): MediaStreamTrack | null;
20836
20865
  /**
20837
- * The **`getTracks()`** method of the stream's track set, regardless of MediaStreamTrack.kind.
20866
+ * The **`getTracks()`** method of the MediaStream interface returns a sequence that represents all the MediaStreamTrack objects in this stream's track set, regardless of MediaStreamTrack.kind.
20838
20867
  *
20839
20868
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getTracks)
20840
20869
  */
20841
20870
  getTracks(): MediaStreamTrack[];
20842
20871
  /**
20843
- * The **`getVideoTracks()`** method of the ```js-nolint getVideoTracks() ``` None.
20872
+ * The **`getVideoTracks()`** method of the MediaStream interface returns a sequence of MediaStreamTrack objects representing the video tracks in this stream.
20844
20873
  *
20845
20874
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getVideoTracks)
20846
20875
  */
20847
20876
  getVideoTracks(): MediaStreamTrack[];
20848
20877
  /**
20849
- * The **`removeTrack()`** method of the MediaStream interface removes a ```js-nolint removeTrack(track) ``` - `track` - : A MediaStreamTrack that will be removed from the stream.
20878
+ * The **`removeTrack()`** method of the MediaStream interface removes a MediaStreamTrack from a stream.
20850
20879
  *
20851
20880
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/removeTrack)
20852
20881
  */
@@ -20890,7 +20919,7 @@ declare var MediaStreamAudioDestinationNode: {
20890
20919
  */
20891
20920
  interface MediaStreamAudioSourceNode extends AudioNode {
20892
20921
  /**
20893
- * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the receiving audio.
20922
+ * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the MediaStream that contains the audio track from which the node is receiving audio.
20894
20923
  *
20895
20924
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioSourceNode/mediaStream)
20896
20925
  */
@@ -20921,7 +20950,7 @@ interface MediaStreamTrack extends EventTarget {
20921
20950
  */
20922
20951
  contentHint: string;
20923
20952
  /**
20924
- * The **`enabled`** property of the `true` if the track is allowed to render the source stream or `false` if it is not.
20953
+ * The **`enabled`** property of the MediaStreamTrack interface is a Boolean value which is `true` if the track is allowed to render the source stream or `false` if it is not.
20925
20954
  *
20926
20955
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/enabled)
20927
20956
  */
@@ -20945,7 +20974,7 @@ interface MediaStreamTrack extends EventTarget {
20945
20974
  */
20946
20975
  readonly label: string;
20947
20976
  /**
20948
- * The **`muted`** read-only property of the indicating whether or not the track is currently unable to provide media output.
20977
+ * The **`muted`** read-only property of the MediaStreamTrack interface returns a boolean value indicating whether or not the track is currently unable to provide media output.
20949
20978
  *
20950
20979
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/muted)
20951
20980
  */
@@ -20981,13 +21010,13 @@ interface MediaStreamTrack extends EventTarget {
20981
21010
  */
20982
21011
  getCapabilities(): MediaTrackCapabilities;
20983
21012
  /**
20984
- * The **`getConstraints()`** method of the MediaStreamTrack interface returns a recently established for the track using a prior call to constraints indicate values and ranges of values that the website or application has specified are required or acceptable for the included constrainable properties.
21013
+ * The **`getConstraints()`** method of the MediaStreamTrack interface returns a MediaTrackConstraints object containing the set of constraints most recently established for the track using a prior call to MediaStreamTrack.applyConstraints.
20985
21014
  *
20986
21015
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getConstraints)
20987
21016
  */
20988
21017
  getConstraints(): MediaTrackConstraints;
20989
21018
  /**
20990
- * The **`getSettings()`** method of the object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
21019
+ * The **`getSettings()`** method of the MediaStreamTrack interface returns a MediaTrackSettings object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
20991
21020
  *
20992
21021
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getSettings)
20993
21022
  */
@@ -21035,13 +21064,13 @@ declare var MediaStreamTrackEvent: {
21035
21064
  */
21036
21065
  interface MessageChannel {
21037
21066
  /**
21038
- * The **`port1`** read-only property of the the port attached to the context that originated the channel.
21067
+ * The **`port1`** read-only property of the MessageChannel interface returns the first port of the message channel — the port attached to the context that originated the channel.
21039
21068
  *
21040
21069
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1)
21041
21070
  */
21042
21071
  readonly port1: MessagePort;
21043
21072
  /**
21044
- * The **`port2`** read-only property of the the port attached to the context at the other end of the channel, which the message is initially sent to.
21073
+ * The **`port2`** read-only property of the MessageChannel interface returns the second port of the message channel — the port attached to the context at the other end of the channel, which the message is initially sent to.
21045
21074
  *
21046
21075
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2)
21047
21076
  */
@@ -21060,31 +21089,31 @@ declare var MessageChannel: {
21060
21089
  */
21061
21090
  interface MessageEvent<T = any> extends Event {
21062
21091
  /**
21063
- * The **`data`** read-only property of the The data sent by the message emitter; this can be any data type, depending on what originated this event.
21092
+ * The **`data`** read-only property of the MessageEvent interface represents the data sent by the message emitter.
21064
21093
  *
21065
21094
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data)
21066
21095
  */
21067
21096
  readonly data: T;
21068
21097
  /**
21069
- * The **`lastEventId`** read-only property of the unique ID for the event.
21098
+ * The **`lastEventId`** read-only property of the MessageEvent interface is a string representing a unique ID for the event.
21070
21099
  *
21071
21100
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId)
21072
21101
  */
21073
21102
  readonly lastEventId: string;
21074
21103
  /**
21075
- * The **`origin`** read-only property of the origin of the message emitter.
21104
+ * The **`origin`** read-only property of the MessageEvent interface is a string representing the origin of the message emitter.
21076
21105
  *
21077
21106
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin)
21078
21107
  */
21079
21108
  readonly origin: string;
21080
21109
  /**
21081
- * The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.
21110
+ * The **`ports`** read-only property of the MessageEvent interface is an array of MessagePort objects containing all MessagePort objects sent with the message, in order.
21082
21111
  *
21083
21112
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports)
21084
21113
  */
21085
21114
  readonly ports: ReadonlyArray<MessagePort>;
21086
21115
  /**
21087
- * The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter.
21116
+ * The **`source`** read-only property of the MessageEvent interface is a `MessageEventSource` (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter.
21088
21117
  *
21089
21118
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
21090
21119
  */
@@ -21132,7 +21161,7 @@ interface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {
21132
21161
  */
21133
21162
  close(): void;
21134
21163
  /**
21135
- * The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.
21164
+ * The **`postMessage()`** method of the MessagePort interface sends a message from the port, and optionally, transfers ownership of objects to other browsing contexts.
21136
21165
  *
21137
21166
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage)
21138
21167
  */
@@ -21674,7 +21703,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21674
21703
  readonly credentials: CredentialsContainer;
21675
21704
  readonly doNotTrack: string | null;
21676
21705
  /**
21677
- * The **`Navigator.geolocation`** read-only property returns a device.
21706
+ * The **`Navigator.geolocation`** read-only property returns a Geolocation object that gives Web content access to the location of the device.
21678
21707
  *
21679
21708
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/geolocation)
21680
21709
  */
@@ -21687,7 +21716,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21687
21716
  */
21688
21717
  readonly login: NavigatorLogin;
21689
21718
  /**
21690
- * The **`maxTouchPoints`** read-only property of the contact points that are supported by the current device.
21719
+ * The **`maxTouchPoints`** read-only property of the Navigator interface returns the maximum number of simultaneous touch contact points that are supported by the current device.
21691
21720
  *
21692
21721
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/maxTouchPoints)
21693
21722
  */
@@ -21712,7 +21741,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21712
21741
  */
21713
21742
  readonly mediaSession: MediaSession;
21714
21743
  /**
21715
- * The **`permissions`** read-only property of the Navigator interface returns a status of APIs covered by the Permissions API.
21744
+ * The **`permissions`** read-only property of the Navigator interface returns a Permissions object that can be used to query and update permission status of APIs covered by the Permissions API.
21716
21745
  *
21717
21746
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/permissions)
21718
21747
  */
@@ -21744,7 +21773,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21744
21773
  */
21745
21774
  canShare(data?: ShareData): boolean;
21746
21775
  /**
21747
- * The **`Navigator.getGamepads()`** method returns an array of Elements in the array may be `null` if a gamepad disconnects during a session, so that the remaining gamepads retain the same index.
21776
+ * The **`Navigator.getGamepads()`** method returns an array of Gamepad objects, one for each gamepad connected to the device.
21748
21777
  *
21749
21778
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/getGamepads)
21750
21779
  */
@@ -21954,7 +21983,7 @@ interface Node extends EventTarget {
21954
21983
  */
21955
21984
  readonly baseURI: string;
21956
21985
  /**
21957
- * The read-only **`childNodes`** property of the Node interface returns a live the first child node is assigned index `0`.
21986
+ * The read-only **`childNodes`** property of the Node interface returns a live NodeList of child Node of the given element where the first child node is assigned index `0`.
21958
21987
  *
21959
21988
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
21960
21989
  */
@@ -22020,7 +22049,7 @@ interface Node extends EventTarget {
22020
22049
  */
22021
22050
  readonly parentNode: ParentNode | null;
22022
22051
  /**
22023
- * The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's or `null` if the specified node is the first in that list.
22052
+ * The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's Node.childNodes list, or `null` if the specified node is the first in that list.
22024
22053
  *
22025
22054
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling)
22026
22055
  */
@@ -22203,19 +22232,19 @@ interface NodeIterator {
22203
22232
  */
22204
22233
  readonly filter: NodeFilter | null;
22205
22234
  /**
22206
- * The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the A boolean.
22235
+ * The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the NodeIterator.referenceNode property.
22207
22236
  *
22208
22237
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/pointerBeforeReferenceNode)
22209
22238
  */
22210
22239
  readonly pointerBeforeReferenceNode: boolean;
22211
22240
  /**
22212
- * The **`NodeIterator.referenceNode`** read-only property returns the iterator remains anchored to the reference node as specified by this property.
22241
+ * The **`NodeIterator.referenceNode`** read-only property returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.
22213
22242
  *
22214
22243
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/referenceNode)
22215
22244
  */
22216
22245
  readonly referenceNode: Node;
22217
22246
  /**
22218
- * The **`NodeIterator.root`** read-only property represents the traverses.
22247
+ * The **`NodeIterator.root`** read-only property represents the Node that is the root of what the NodeIterator traverses.
22219
22248
  *
22220
22249
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/root)
22221
22250
  */
@@ -22323,13 +22352,13 @@ interface NotificationEventMap {
22323
22352
  */
22324
22353
  interface Notification extends EventTarget {
22325
22354
  /**
22326
- * The **`body`** read-only property of the specified in the `body` option of the A string.
22355
+ * The **`body`** read-only property of the Notification interface indicates the body string of the notification, as specified in the `body` option of the Notification.Notification constructor.
22327
22356
  *
22328
22357
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body)
22329
22358
  */
22330
22359
  readonly body: string;
22331
22360
  /**
22332
- * The **`data`** read-only property of the data, as specified in the `data` option of the The notification's data can be any arbitrary data that you want associated with the notification.
22361
+ * The **`data`** read-only property of the Notification interface returns a structured clone of the notification's data, as specified in the `data` option of the Notification.Notification constructor.
22333
22362
  *
22334
22363
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data)
22335
22364
  */
@@ -22341,13 +22370,13 @@ interface Notification extends EventTarget {
22341
22370
  */
22342
22371
  readonly dir: NotificationDirection;
22343
22372
  /**
22344
- * The **`icon`** read-only property of the part of the notification, as specified in the `icon` option of the A string.
22373
+ * The **`icon`** read-only property of the Notification interface contains the URL of an icon to be displayed as part of the notification, as specified in the `icon` option of the Notification.Notification constructor.
22345
22374
  *
22346
22375
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/icon)
22347
22376
  */
22348
22377
  readonly icon: string;
22349
22378
  /**
22350
- * The **`lang`** read-only property of the as specified in the `lang` option of the The language itself is specified using a string representing a language tag according to MISSING: RFC(5646, 'Tags for Identifying Languages (also known as BCP 47)')].
22379
+ * The **`lang`** read-only property of the Notification interface indicates the language used in the notification, as specified in the `lang` option of the Notification.Notification constructor.
22351
22380
  *
22352
22381
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/lang)
22353
22382
  */
@@ -22367,19 +22396,19 @@ interface Notification extends EventTarget {
22367
22396
  */
22368
22397
  readonly requireInteraction: boolean;
22369
22398
  /**
22370
- * The **`silent`** read-only property of the silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
22399
+ * The **`silent`** read-only property of the Notification interface specifies whether the notification should be silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
22371
22400
  *
22372
22401
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent)
22373
22402
  */
22374
22403
  readonly silent: boolean | null;
22375
22404
  /**
22376
- * The **`tag`** read-only property of the as specified in the `tag` option of the The idea of notification tags is that more than one notification can share the same tag, linking them together.
22405
+ * The **`tag`** read-only property of the Notification interface signifies an identifying tag for the notification, as specified in the `tag` option of the Notification.Notification constructor.
22377
22406
  *
22378
22407
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag)
22379
22408
  */
22380
22409
  readonly tag: string;
22381
22410
  /**
22382
- * The **`title`** read-only property of the specified in the `title` parameter of the A string.
22411
+ * The **`title`** read-only property of the Notification interface indicates the title of the notification, as specified in the `title` parameter of the Notification.Notification constructor.
22383
22412
  *
22384
22413
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/title)
22385
22414
  */
@@ -22534,13 +22563,13 @@ interface OES_vertex_array_object {
22534
22563
  */
22535
22564
  bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
22536
22565
  /**
22537
- * The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a pointing to vertex array data and which provides names for different sets of vertex data.
22566
+ * The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a WebGLVertexArrayObject object that represents a vertex array object (VAO) pointing to vertex array data and which provides names for different sets of vertex data.
22538
22567
  *
22539
22568
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/createVertexArrayOES)
22540
22569
  */
22541
22570
  createVertexArrayOES(): WebGLVertexArrayObjectOES;
22542
22571
  /**
22543
- * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given ```js-nolint deleteVertexArrayOES(arrayObject) ``` - `arrayObject` - : A WebGLVertexArrayObject (VAO) object to delete.
22572
+ * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given WebGLVertexArrayObject object.
22544
22573
  *
22545
22574
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES)
22546
22575
  */
@@ -22579,7 +22608,7 @@ interface OVR_multiview2 {
22579
22608
  */
22580
22609
  interface OfflineAudioCompletionEvent extends Event {
22581
22610
  /**
22582
- * The **`renderedBuffer`** read-only property of the containing the result of processing an OfflineAudioContext.
22611
+ * The **`renderedBuffer`** read-only property of the OfflineAudioCompletionEvent interface is an AudioBuffer containing the result of processing an OfflineAudioContext.
22583
22612
  *
22584
22613
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer)
22585
22614
  */
@@ -22602,7 +22631,7 @@ interface OfflineAudioContextEventMap extends BaseAudioContextEventMap {
22602
22631
  */
22603
22632
  interface OfflineAudioContext extends BaseAudioContext {
22604
22633
  /**
22605
- * The **`length`** property of the the buffer in sample-frames.
22634
+ * The **`length`** property of the OfflineAudioContext interface returns an integer representing the size of the buffer in sample-frames.
22606
22635
  *
22607
22636
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/length)
22608
22637
  */
@@ -22610,7 +22639,7 @@ interface OfflineAudioContext extends BaseAudioContext {
22610
22639
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/complete_event) */
22611
22640
  oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null;
22612
22641
  /**
22613
- * The **`resume()`** method of the context that has been suspended.
22642
+ * The **`resume()`** method of the OfflineAudioContext interface resumes the progression of time in an audio context that has been suspended.
22614
22643
  *
22615
22644
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/resume)
22616
22645
  */
@@ -22739,7 +22768,7 @@ interface OscillatorNode extends AudioScheduledSourceNode {
22739
22768
  */
22740
22769
  type: OscillatorType;
22741
22770
  /**
22742
- * The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when ```js-nolint setPeriodicWave(wave) ``` - `wave` - : A PeriodicWave object representing the waveform to use as the shape of the oscillator's output.
22771
+ * The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when OscillatorNode.type is `custom`.
22743
22772
  *
22744
22773
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/setPeriodicWave)
22745
22774
  */
@@ -22762,7 +22791,7 @@ declare var OscillatorNode: {
22762
22791
  */
22763
22792
  interface OverconstrainedError extends DOMException {
22764
22793
  /**
22765
- * The **`constraint`** read-only property of the in the constructor, meaning the constraint that was not satisfied.
22794
+ * The **`constraint`** read-only property of the OverconstrainedError interface returns the constraint that was supplied in the constructor, meaning the constraint that was not satisfied.
22766
22795
  *
22767
22796
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint)
22768
22797
  */
@@ -23155,7 +23184,7 @@ interface PaymentRequestEventMap {
23155
23184
  */
23156
23185
  interface PaymentRequest extends EventTarget {
23157
23186
  /**
23158
- * The **`id`** read-only attribute of the When constructing an instance of the PaymentRequest, you are able to supply an custom id.
23187
+ * The **`id`** read-only attribute of the PaymentRequest interface returns a unique identifier for a particular PaymentRequest instance.
23159
23188
  *
23160
23189
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/id)
23161
23190
  */
@@ -23189,7 +23218,7 @@ interface PaymentRequest extends EventTarget {
23189
23218
  */
23190
23219
  readonly shippingOption: string | null;
23191
23220
  /**
23192
- * The **`shippingType`** read-only property of the `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
23221
+ * The **`shippingType`** read-only property of the PaymentRequest interface returns one of `'shipping'`, `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
23193
23222
  * @deprecated
23194
23223
  *
23195
23224
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingType)
@@ -23232,7 +23261,7 @@ declare var PaymentRequest: {
23232
23261
  */
23233
23262
  interface PaymentRequestUpdateEvent extends Event {
23234
23263
  /**
23235
- * The **`updateWith()`** method of the ```js-nolint updateWith(details) ``` - `details` - : Either an object or a Promise that resolves to an object, specifying the changes applied to the payment request: - `displayItems` MISSING: optional_inline] - : An array of objects, each describing one line item for the payment request.
23264
+ * The **`updateWith()`** method of the PaymentRequestUpdateEvent interface updates the details of an existing PaymentRequest.
23236
23265
  *
23237
23266
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequestUpdateEvent/updateWith)
23238
23267
  */
@@ -23256,7 +23285,7 @@ interface PaymentResponseEventMap {
23256
23285
  */
23257
23286
  interface PaymentResponse extends EventTarget {
23258
23287
  /**
23259
- * The **`details`** read-only property of the provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.
23288
+ * The **`details`** read-only property of the PaymentResponse interface returns a JSON-serializable object that provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.
23260
23289
  *
23261
23290
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/details)
23262
23291
  */
@@ -23276,7 +23305,7 @@ interface PaymentResponse extends EventTarget {
23276
23305
  */
23277
23306
  readonly payerEmail: string | null;
23278
23307
  /**
23279
- * The **`payerName`** read-only property of the option is only present when the `requestPayerName` option is set to `true` in the options parameter of the A string containing the payer name.
23308
+ * The **`payerName`** read-only property of the PaymentResponse interface returns the name supplied by the user.
23280
23309
  *
23281
23310
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)
23282
23311
  */
@@ -23288,7 +23317,7 @@ interface PaymentResponse extends EventTarget {
23288
23317
  */
23289
23318
  readonly payerPhone: string | null;
23290
23319
  /**
23291
- * The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.
23320
+ * The **`requestId`** read-only property of the PaymentResponse interface returns the free-form identifier supplied by the `PaymentResponse()` constructor by details.id.
23292
23321
  *
23293
23322
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/requestId)
23294
23323
  */
@@ -23306,7 +23335,7 @@ interface PaymentResponse extends EventTarget {
23306
23335
  */
23307
23336
  readonly shippingOption: string | null;
23308
23337
  /**
23309
- * The PaymentRequest method **`complete()`** of the Payment Request API notifies the user interface to be closed.
23338
+ * The PaymentRequest method **`complete()`** of the Payment Request API notifies the user agent that the user interaction is over, and causes any remaining user interface to be closed.
23310
23339
  *
23311
23340
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/complete)
23312
23341
  */
@@ -23892,7 +23921,7 @@ interface PerformanceResourceTiming extends PerformanceEntry {
23892
23921
  */
23893
23922
  readonly transferSize: number;
23894
23923
  /**
23895
- * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a The `workerStart` property can have the following values: - A DOMHighResTimeStamp.
23924
+ * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a DOMHighResTimeStamp immediately before dispatching the FetchEvent if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running.
23896
23925
  *
23897
23926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/workerStart)
23898
23927
  */
@@ -23983,7 +24012,7 @@ interface PerformanceTiming {
23983
24012
  */
23984
24013
  readonly domContentLoadedEventEnd: number;
23985
24014
  /**
23986
- * The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the executed right after parsing has been executed.
24015
+ * The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the Document/DOMContentLoaded_event event, that is right after all the scripts that need to be executed right after parsing has been executed.
23987
24016
  * @deprecated
23988
24017
  *
23989
24018
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domContentLoadedEventStart)
@@ -23997,7 +24026,7 @@ interface PerformanceTiming {
23997
24026
  */
23998
24027
  readonly domInteractive: number;
23999
24028
  /**
24000
- * The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its corresponding Document/readystatechange_event event is thrown.
24029
+ * The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its Document.readyState changes to `'loading'` and the corresponding Document/readystatechange_event event is thrown.
24001
24030
  * @deprecated
24002
24031
  *
24003
24032
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domLoading)
@@ -24148,7 +24177,7 @@ interface PermissionStatus extends EventTarget {
24148
24177
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/change_event) */
24149
24178
  onchange: ((this: PermissionStatus, ev: Event) => any) | null;
24150
24179
  /**
24151
- * The **`state`** read-only property of the This property returns one of `'granted'`, `'denied'`, or `'prompt'`.
24180
+ * The **`state`** read-only property of the PermissionStatus interface returns the state of a requested permission.
24152
24181
  *
24153
24182
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)
24154
24183
  */
@@ -24165,7 +24194,7 @@ declare var PermissionStatus: {
24165
24194
  };
24166
24195
 
24167
24196
  /**
24168
- * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions - Permissions.query - : Returns the user permission status for a given API.
24197
+ * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions
24169
24198
  *
24170
24199
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)
24171
24200
  */
@@ -24323,13 +24352,13 @@ interface PointerEvent extends MouseEvent {
24323
24352
  */
24324
24353
  readonly azimuthAngle: number;
24325
24354
  /**
24326
- * The **`height`** read-only property of the geometry, along the y-axis (in CSS pixels).
24355
+ * The **`height`** read-only property of the PointerEvent interface represents the height of the pointer's contact geometry, along the y-axis (in CSS pixels).
24327
24356
  *
24328
24357
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/height)
24329
24358
  */
24330
24359
  readonly height: number;
24331
24360
  /**
24332
- * The **`isPrimary`** read-only property of the created the event is the _primary_ pointer.
24361
+ * The **`isPrimary`** read-only property of the PointerEvent interface indicates whether or not the pointer device that created the event is the _primary_ pointer.
24333
24362
  *
24334
24363
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/isPrimary)
24335
24364
  */
@@ -24341,25 +24370,25 @@ interface PointerEvent extends MouseEvent {
24341
24370
  */
24342
24371
  readonly persistentDeviceId: number;
24343
24372
  /**
24344
- * The **`pointerId`** read-only property of the event.
24373
+ * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
24345
24374
  *
24346
24375
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
24347
24376
  */
24348
24377
  readonly pointerId: number;
24349
24378
  /**
24350
- * The **`pointerType`** read-only property of the that caused a given pointer event.
24379
+ * The **`pointerType`** read-only property of the PointerEvent interface indicates the device type (mouse, pen, or touch) that caused a given pointer event.
24351
24380
  *
24352
24381
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerType)
24353
24382
  */
24354
24383
  readonly pointerType: string;
24355
24384
  /**
24356
- * The **`pressure`** read-only property of the input.
24385
+ * The **`pressure`** read-only property of the PointerEvent interface indicates the normalized pressure of the pointer input.
24357
24386
  *
24358
24387
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pressure)
24359
24388
  */
24360
24389
  readonly pressure: number;
24361
24390
  /**
24362
- * The **`tangentialPressure`** read-only property of the the pointer input (also known as barrel pressure or cylinder stress).
24391
+ * The **`tangentialPressure`** read-only property of the PointerEvent interface represents the normalized tangential pressure of the pointer input (also known as barrel pressure or cylinder stress).
24363
24392
  *
24364
24393
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tangentialPressure)
24365
24394
  */
@@ -24377,13 +24406,13 @@ interface PointerEvent extends MouseEvent {
24377
24406
  */
24378
24407
  readonly tiltY: number;
24379
24408
  /**
24380
- * The **`twist`** read-only property of the (e.g., pen stylus) around its major axis, in degrees.
24409
+ * The **`twist`** read-only property of the PointerEvent interface represents the clockwise rotation of the pointer (e.g., pen stylus) around its major axis, in degrees.
24381
24410
  *
24382
24411
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/twist)
24383
24412
  */
24384
24413
  readonly twist: number;
24385
24414
  /**
24386
- * The **`width`** read-only property of the geometry along the x-axis, measured in CSS pixels.
24415
+ * The **`width`** read-only property of the PointerEvent interface represents the width of the pointer's contact geometry along the x-axis, measured in CSS pixels.
24387
24416
  *
24388
24417
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/width)
24389
24418
  */
@@ -24467,7 +24496,7 @@ declare var ProcessingInstruction: {
24467
24496
  */
24468
24497
  interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
24469
24498
  /**
24470
- * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the A boolean.
24499
+ * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the ProgressEvent has a length that can be calculated.
24471
24500
  *
24472
24501
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/lengthComputable)
24473
24502
  */
@@ -24499,7 +24528,7 @@ declare var ProgressEvent: {
24499
24528
  */
24500
24529
  interface PromiseRejectionEvent extends Event {
24501
24530
  /**
24502
- * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected.
24531
+ * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript Promise which was rejected.
24503
24532
  *
24504
24533
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise)
24505
24534
  */
@@ -24531,13 +24560,13 @@ interface PublicKeyCredential extends Credential {
24531
24560
  */
24532
24561
  readonly authenticatorAttachment: string | null;
24533
24562
  /**
24534
- * The **`rawId`** read-only property of the containing the identifier of the credentials.
24563
+ * The **`rawId`** read-only property of the PublicKeyCredential interface is an ArrayBuffer object containing the identifier of the credentials.
24535
24564
  *
24536
24565
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId)
24537
24566
  */
24538
24567
  readonly rawId: ArrayBuffer;
24539
24568
  /**
24540
- * The **`response`** read-only property of the object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
24569
+ * The **`response`** read-only property of the PublicKeyCredential interface is an AuthenticatorResponse object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
24541
24570
  *
24542
24571
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/response)
24543
24572
  */
@@ -24623,7 +24652,7 @@ interface PushManager {
24623
24652
  */
24624
24653
  getSubscription(): Promise<PushSubscription | null>;
24625
24654
  /**
24626
- * The **`permissionState()`** method of the string indicating the permission state of the push manager.
24655
+ * The **`permissionState()`** method of the PushManager interface returns a Promise that resolves to a string indicating the permission state of the push manager.
24627
24656
  *
24628
24657
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/permissionState)
24629
24658
  */
@@ -24655,13 +24684,13 @@ declare var PushManager: {
24655
24684
  */
24656
24685
  interface PushSubscription {
24657
24686
  /**
24658
- * The **`endpoint`** read-only property of the the endpoint associated with the push subscription.
24687
+ * The **`endpoint`** read-only property of the PushSubscription interface returns a string containing the endpoint associated with the push subscription.
24659
24688
  *
24660
24689
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/endpoint)
24661
24690
  */
24662
24691
  readonly endpoint: string;
24663
24692
  /**
24664
- * The **`expirationTime`** read-only property of the of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
24693
+ * The **`expirationTime`** read-only property of the PushSubscription interface returns a DOMHighResTimeStamp of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
24665
24694
  *
24666
24695
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/expirationTime)
24667
24696
  */
@@ -24824,7 +24853,7 @@ interface RTCDataChannelEventMap {
24824
24853
  */
24825
24854
  interface RTCDataChannel extends EventTarget {
24826
24855
  /**
24827
- * The property **`binaryType`** on the the type of object which should be used to represent binary data received on the RTCDataChannel.
24856
+ * The property **`binaryType`** on the RTCDataChannel interface is a string which specifies the type of object which should be used to represent binary data received on the RTCDataChannel.
24828
24857
  *
24829
24858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/binaryType)
24830
24859
  */
@@ -24866,7 +24895,7 @@ interface RTCDataChannel extends EventTarget {
24866
24895
  */
24867
24896
  readonly maxRetransmits: number | null;
24868
24897
  /**
24869
- * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the (`true`) or by the WebRTC layer (`false`).
24898
+ * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the RTCDataChannel's connection was negotiated by the Web app (`true`) or by the WebRTC layer (`false`).
24870
24899
  *
24871
24900
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/negotiated)
24872
24901
  */
@@ -24902,13 +24931,13 @@ interface RTCDataChannel extends EventTarget {
24902
24931
  */
24903
24932
  readonly readyState: RTCDataChannelState;
24904
24933
  /**
24905
- * The **`RTCDataChannel.close()`** method closes the closure of the channel.
24934
+ * The **`RTCDataChannel.close()`** method closes the RTCDataChannel.
24906
24935
  *
24907
24936
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close)
24908
24937
  */
24909
24938
  close(): void;
24910
24939
  /**
24911
- * The **`send()`** method of the remote peer.
24940
+ * The **`send()`** method of the RTCDataChannel interface sends data across the data channel to the remote peer.
24912
24941
  *
24913
24942
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/send)
24914
24943
  */
@@ -24967,7 +24996,7 @@ interface RTCDtlsTransport extends EventTarget {
24967
24996
  onerror: ((this: RTCDtlsTransport, ev: RTCErrorEvent) => any) | null;
24968
24997
  onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
24969
24998
  /**
24970
- * The **`state`** read-only property of the Datagram Transport Layer Security (**DTLS**) transport state.
24999
+ * The **`state`** read-only property of the RTCDtlsTransport interface provides information which describes a Datagram Transport Layer Security (**DTLS**) transport state.
24971
25000
  *
24972
25001
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state)
24973
25002
  */
@@ -25063,19 +25092,19 @@ interface RTCError extends DOMException {
25063
25092
  */
25064
25093
  readonly receivedAlert: number | null;
25065
25094
  /**
25066
- * The read-only **`sctpCauseCode`** property in an why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
25095
+ * The read-only **`sctpCauseCode`** property in an RTCError object provides the SCTP cause code explaining why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
25067
25096
  *
25068
25097
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sctpCauseCode)
25069
25098
  */
25070
25099
  readonly sctpCauseCode: number | null;
25071
25100
  /**
25072
- * The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the An unsigned integer value indicating the line within the SDP at which the syntax error described by the `RTCError` object occurred.
25101
+ * The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the SDP at which a syntax error occurred while parsing it.
25073
25102
  *
25074
25103
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sdpLineNumber)
25075
25104
  */
25076
25105
  readonly sdpLineNumber: number | null;
25077
25106
  /**
25078
- * The read-only **`sentAlert`** property in an while sending data to the remote peer, if the error represents an outbound DTLS error.
25107
+ * The read-only **`sentAlert`** property in an RTCError object specifies the DTLS alert number occurred while sending data to the remote peer, if the error represents an outbound DTLS error.
25079
25108
  *
25080
25109
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sentAlert)
25081
25110
  */
@@ -25213,7 +25242,7 @@ declare var RTCIceCandidate: {
25213
25242
  interface RTCIceCandidatePair {
25214
25243
  /** The **`local`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection. */
25215
25244
  local: RTCIceCandidate;
25216
- /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the viable WebRTC connection. */
25245
+ /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate describing the configuration of the remote end of a viable WebRTC connection. */
25217
25246
  remote: RTCIceCandidate;
25218
25247
  }
25219
25248
 
@@ -25301,7 +25330,7 @@ interface RTCPeerConnection extends EventTarget {
25301
25330
  */
25302
25331
  readonly currentLocalDescription: RTCSessionDescription | null;
25303
25332
  /**
25304
- * The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an Also included is a list of any ICE candidates that may already have been generated by the ICE agent since the offer or answer represented by the description was first instantiated.
25333
+ * The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription object describing the remote end of the connection as it was most recently successfully negotiated since the last time the RTCPeerConnection finished negotiating and connecting to a remote peer.
25305
25334
  *
25306
25335
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/currentRemoteDescription)
25307
25336
  */
@@ -25531,7 +25560,7 @@ declare var RTCPeerConnectionIceErrorEvent: {
25531
25560
  */
25532
25561
  interface RTCPeerConnectionIceEvent extends Event {
25533
25562
  /**
25534
- * The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the An RTCIceCandidate object representing the ICE candidate that has been received, or `null` to indicate that there are no further candidates for this negotiation session.
25563
+ * The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the RTCIceCandidate associated with the event.
25535
25564
  *
25536
25565
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceEvent/candidate)
25537
25566
  */
@@ -25556,7 +25585,7 @@ interface RTCRtpReceiver {
25556
25585
  */
25557
25586
  jitterBufferTarget: DOMHighResTimeStamp | null;
25558
25587
  /**
25559
- * The **`track`** read-only property of the associated with the current RTCRtpReceiver instance.
25588
+ * The **`track`** read-only property of the RTCRtpReceiver interface returns the MediaStreamTrack associated with the current RTCRtpReceiver instance.
25560
25589
  *
25561
25590
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track)
25562
25591
  */
@@ -25568,7 +25597,7 @@ interface RTCRtpReceiver {
25568
25597
  */
25569
25598
  transform: RTCRtpTransform | null;
25570
25599
  /**
25571
- * The read-only **`transport`** property of an used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
25600
+ * The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
25572
25601
  *
25573
25602
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport)
25574
25603
  */
@@ -25630,7 +25659,7 @@ declare var RTCRtpScriptTransform: {
25630
25659
  */
25631
25660
  interface RTCRtpSender {
25632
25661
  /**
25633
- * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a over the RTCPeerConnection.
25662
+ * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a RTCDTMFSender object which can be used to send DTMF tones over the RTCPeerConnection.
25634
25663
  *
25635
25664
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/dtmf)
25636
25665
  */
@@ -25648,7 +25677,7 @@ interface RTCRtpSender {
25648
25677
  */
25649
25678
  transform: RTCRtpTransform | null;
25650
25679
  /**
25651
- * The read-only **`transport`** property of an used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
25680
+ * The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
25652
25681
  *
25653
25682
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport)
25654
25683
  */
@@ -25721,13 +25750,13 @@ interface RTCRtpTransceiver {
25721
25750
  */
25722
25751
  readonly mid: string | null;
25723
25752
  /**
25724
- * The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the data for the transceiver's stream.
25753
+ * The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpReceiver responsible for receiving and decoding incoming media data for the transceiver's stream.
25725
25754
  *
25726
25755
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/receiver)
25727
25756
  */
25728
25757
  readonly receiver: RTCRtpReceiver;
25729
25758
  /**
25730
- * The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the for the transceiver's stream.
25759
+ * The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpSender responsible for encoding and sending outgoing media data for the transceiver's stream.
25731
25760
  *
25732
25761
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/sender)
25733
25762
  */
@@ -25739,7 +25768,7 @@ interface RTCRtpTransceiver {
25739
25768
  */
25740
25769
  setCodecPreferences(codecs: RTCRtpCodec[]): void;
25741
25770
  /**
25742
- * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and ```js-nolint stop() ``` None.
25771
+ * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and RTCRtpReceiver.
25743
25772
  *
25744
25773
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/stop)
25745
25774
  */
@@ -25817,7 +25846,7 @@ interface RTCSessionDescription {
25817
25846
  */
25818
25847
  readonly type: RTCSdpType;
25819
25848
  /**
25820
- * The **`RTCSessionDescription.toJSON()`** method generates a ```js-nolint toJSON() ``` None.
25849
+ * The **`RTCSessionDescription.toJSON()`** method generates a JSON description of the object.
25821
25850
  *
25822
25851
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/toJSON)
25823
25852
  */
@@ -25850,25 +25879,25 @@ declare var RTCStatsReport: {
25850
25879
  */
25851
25880
  interface RTCTrackEvent extends Event {
25852
25881
  /**
25853
- * The read-only **`receiver`** property of the RTCTrackEvent interface indicates the The RTCRtpReceiver which pairs the `receiver` with a sender and other properties which establish a single bidirectional RTP stream for use by the RTCTrackEvent.track associated with the `RTCTrackEvent`.
25882
+ * The read-only **`receiver`** property of the RTCTrackEvent interface indicates the RTCRtpReceiver which is used to receive data containing media for the RTCTrackEvent.track to which the event refers.
25854
25883
  *
25855
25884
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/receiver)
25856
25885
  */
25857
25886
  readonly receiver: RTCRtpReceiver;
25858
25887
  /**
25859
- * The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of track being added to the RTCPeerConnection.
25888
+ * The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of MediaStream objects, one for each of the streams that comprise the track being added to the RTCPeerConnection.
25860
25889
  *
25861
25890
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/streams)
25862
25891
  */
25863
25892
  readonly streams: ReadonlyArray<MediaStream>;
25864
25893
  /**
25865
- * The
25894
+ * The WebRTC API interface RTCTrackEvent's read-only **`track`** property specifies the MediaStreamTrack that has been added to the RTCPeerConnection.
25866
25895
  *
25867
25896
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/track)
25868
25897
  */
25869
25898
  readonly track: MediaStreamTrack;
25870
25899
  /**
25871
- * The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the The transceiver pairs the track's The RTCRtpTransceiver which pairs the `receiver` with a sender and other properties which establish a single bidirectional RTP stream for use by the RTCTrackEvent.track associated with the `RTCTrackEvent`.
25900
+ * The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the RTCRtpTransceiver affiliated with the event's RTCTrackEvent.track.
25872
25901
  *
25873
25902
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/transceiver)
25874
25903
  */
@@ -25918,13 +25947,13 @@ interface Range extends AbstractRange {
25918
25947
  */
25919
25948
  cloneContents(): DocumentFragment;
25920
25949
  /**
25921
- * The **`Range.cloneRange()`** method returns a The returned clone is copied by value, not reference, so a change in either ```js-nolint cloneRange() ``` None.
25950
+ * The **`Range.cloneRange()`** method returns a Range object with boundary points identical to the cloned Range.
25922
25951
  *
25923
25952
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/cloneRange)
25924
25953
  */
25925
25954
  cloneRange(): Range;
25926
25955
  /**
25927
- * The **`collapse()`** method of the Range interface collapses the A collapsed Range is empty, containing no content, specifying a single-point in a DOM tree.
25956
+ * The **`collapse()`** method of the Range interface collapses the Range to one of its boundary points.
25928
25957
  *
25929
25958
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/collapse)
25930
25959
  */
@@ -25942,7 +25971,7 @@ interface Range extends AbstractRange {
25942
25971
  */
25943
25972
  comparePoint(node: Node, offset: number): number;
25944
25973
  /**
25945
- * The **`Range.createContextualFragment()`** method returns a XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.
25974
+ * The **`Range.createContextualFragment()`** method returns a DocumentFragment by invoking the HTML fragment parsing algorithm or the XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.
25946
25975
  *
25947
25976
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/createContextualFragment)
25948
25977
  */
@@ -25996,7 +26025,7 @@ interface Range extends AbstractRange {
25996
26025
  */
25997
26026
  isPointInRange(node: Node, offset: number): boolean;
25998
26027
  /**
25999
- * The **`Range.selectNode()`** method sets the the parent of the _referenceNode_.
26028
+ * The **`Range.selectNode()`** method sets the Range to contain the Node and its contents.
26000
26029
  *
26001
26030
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/selectNode)
26002
26031
  */
@@ -26014,7 +26043,7 @@ interface Range extends AbstractRange {
26014
26043
  */
26015
26044
  setEnd(node: Node, offset: number): void;
26016
26045
  /**
26017
- * The **`Range.setEndAfter()`** method sets the end position of a `Node` of end of the `Range` will be the same as that for the `referenceNode`.
26046
+ * The **`Range.setEndAfter()`** method sets the end position of a Range relative to another Node.
26018
26047
  *
26019
26048
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEndAfter)
26020
26049
  */
@@ -26026,7 +26055,7 @@ interface Range extends AbstractRange {
26026
26055
  */
26027
26056
  setEndBefore(node: Node): void;
26028
26057
  /**
26029
- * The **`Range.setStart()`** method sets the start position of a If the `startNode` is a Node of type Text, the number of characters from the start of `startNode`.
26058
+ * The **`Range.setStart()`** method sets the start position of a Range.
26030
26059
  *
26031
26060
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStart)
26032
26061
  */
@@ -26147,7 +26176,7 @@ interface ReadableStream<R = any> {
26147
26176
  */
26148
26177
  pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;
26149
26178
  /**
26150
- * The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.
26179
+ * The **`tee()`** method of the ReadableStream interface tees the current readable stream, returning a two-element array containing the two resulting branches as new ReadableStream instances.
26151
26180
  *
26152
26181
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee)
26153
26182
  */
@@ -26224,7 +26253,7 @@ declare var ReadableStreamBYOBRequest: {
26224
26253
  */
26225
26254
  interface ReadableStreamDefaultController<R = any> {
26226
26255
  /**
26227
- * The **`desiredSize`** read-only property of the required to fill the stream's internal queue.
26256
+ * The **`desiredSize`** read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream's internal queue.
26228
26257
  *
26229
26258
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize)
26230
26259
  */
@@ -26236,13 +26265,13 @@ interface ReadableStreamDefaultController<R = any> {
26236
26265
  */
26237
26266
  close(): void;
26238
26267
  /**
26239
- * The **`enqueue()`** method of the ```js-nolint enqueue(chunk) ``` - `chunk` - : The chunk to enqueue.
26268
+ * The **`enqueue()`** method of the ReadableStreamDefaultController interface enqueues a given chunk in the associated stream.
26240
26269
  *
26241
26270
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue)
26242
26271
  */
26243
26272
  enqueue(chunk?: R): void;
26244
26273
  /**
26245
- * The **`error()`** method of the with the associated stream to error.
26274
+ * The **`error()`** method of the ReadableStreamDefaultController interface causes any future interactions with the associated stream to error.
26246
26275
  *
26247
26276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error)
26248
26277
  */
@@ -26346,19 +26375,19 @@ declare var RemotePlayback: {
26346
26375
  */
26347
26376
  interface ReportingObserver {
26348
26377
  /**
26349
- * The **`disconnect()`** method of the previously started observing from collecting reports.
26378
+ * The **`disconnect()`** method of the ReportingObserver interface stops a reporting observer that had previously started observing from collecting reports.
26350
26379
  *
26351
26380
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect)
26352
26381
  */
26353
26382
  disconnect(): void;
26354
26383
  /**
26355
- * The **`observe()`** method of the collecting reports in its report queue.
26384
+ * The **`observe()`** method of the ReportingObserver interface instructs a reporting observer to start collecting reports in its report queue.
26356
26385
  *
26357
26386
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/observe)
26358
26387
  */
26359
26388
  observe(): void;
26360
26389
  /**
26361
- * The **`takeRecords()`** method of the in the observer's report queue, and empties the queue.
26390
+ * The **`takeRecords()`** method of the ReportingObserver interface returns the current list of reports contained in the observer's report queue, and empties the queue.
26362
26391
  *
26363
26392
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/takeRecords)
26364
26393
  */
@@ -26395,7 +26424,7 @@ interface Request extends Body {
26395
26424
  */
26396
26425
  readonly destination: RequestDestination;
26397
26426
  /**
26398
- * The **`headers`** read-only property of the with the request.
26427
+ * The **`headers`** read-only property of the Request interface contains the Headers object associated with the request.
26399
26428
  *
26400
26429
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers)
26401
26430
  */
@@ -26413,7 +26442,7 @@ interface Request extends Body {
26413
26442
  */
26414
26443
  readonly keepalive: boolean;
26415
26444
  /**
26416
- * The **`method`** read-only property of the `POST`, etc.) A String indicating the method of the request.
26445
+ * The **`method`** read-only property of the Request interface contains the request's method (`GET`, `POST`, etc.)
26417
26446
  *
26418
26447
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method)
26419
26448
  */
@@ -26431,13 +26460,13 @@ interface Request extends Body {
26431
26460
  */
26432
26461
  readonly redirect: RequestRedirect;
26433
26462
  /**
26434
- * The **`referrer`** read-only property of the Request.
26463
+ * The **`referrer`** read-only property of the Request interface is set by the user agent to be the referrer of the Request.
26435
26464
  *
26436
26465
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrer)
26437
26466
  */
26438
26467
  readonly referrer: string;
26439
26468
  /**
26440
- * The **`referrerPolicy`** read-only property of the referrer information, sent in the Referer header, should be included with the request.
26469
+ * The **`referrerPolicy`** read-only property of the Request interface returns the referrer policy, which governs what referrer information, sent in the Referer header, should be included with the request.
26441
26470
  *
26442
26471
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrerPolicy)
26443
26472
  */
@@ -26474,19 +26503,19 @@ declare var Request: {
26474
26503
  */
26475
26504
  interface ResizeObserver {
26476
26505
  /**
26477
- * The **`disconnect()`** method of the or SVGElement targets.
26506
+ * The **`disconnect()`** method of the ResizeObserver interface unobserves all observed Element or SVGElement targets.
26478
26507
  *
26479
26508
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/disconnect)
26480
26509
  */
26481
26510
  disconnect(): void;
26482
26511
  /**
26483
- * The **`observe()`** method of the ```js-nolint observe(target) observe(target, options) ``` - `target` - : A reference to an Element or SVGElement to be observed.
26512
+ * The **`observe()`** method of the ResizeObserver interface starts observing the specified Element or SVGElement.
26484
26513
  *
26485
26514
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/observe)
26486
26515
  */
26487
26516
  observe(target: Element, options?: ResizeObserverOptions): void;
26488
26517
  /**
26489
- * The **`unobserve()`** method of the ```js-nolint unobserve(target) ``` - `target` - : A reference to an Element or SVGElement to be unobserved.
26518
+ * The **`unobserve()`** method of the ResizeObserver interface ends the observing of a specified Element or SVGElement.
26490
26519
  *
26491
26520
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/unobserve)
26492
26521
  */
@@ -26517,7 +26546,7 @@ interface ResizeObserverEntry {
26517
26546
  */
26518
26547
  readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
26519
26548
  /**
26520
- * The `contentRect` read-only property of the object containing the new size of the observed element when the callback is run.
26549
+ * The `contentRect` read-only property of the ResizeObserverEntry interface returns a DOMRectReadOnly object containing the new size of the observed element when the callback is run.
26521
26550
  *
26522
26551
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect)
26523
26552
  */
@@ -26529,7 +26558,7 @@ interface ResizeObserverEntry {
26529
26558
  */
26530
26559
  readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
26531
26560
  /**
26532
- * The **`target`** read-only property of the An Element or SVGElement representing the element being observed.
26561
+ * The **`target`** read-only property of the ResizeObserverEntry interface returns a reference to the Element or SVGElement that is being observed.
26533
26562
  *
26534
26563
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target)
26535
26564
  */
@@ -26573,7 +26602,7 @@ declare var ResizeObserverSize: {
26573
26602
  */
26574
26603
  interface Response extends Body {
26575
26604
  /**
26576
- * The **`headers`** read-only property of the with the response.
26605
+ * The **`headers`** read-only property of the Response interface contains the Headers object associated with the response.
26577
26606
  *
26578
26607
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers)
26579
26608
  */
@@ -27160,7 +27189,7 @@ declare var SVGAnimationElement: {
27160
27189
  */
27161
27190
  interface SVGCircleElement extends SVGGeometryElement {
27162
27191
  /**
27163
- * The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.< If unspecified, the effect is as if the value is set to `0`.
27192
+ * The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.<
27164
27193
  *
27165
27194
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/cx)
27166
27195
  */
@@ -28540,7 +28569,7 @@ declare var SVGGElement: {
28540
28569
  */
28541
28570
  interface SVGGeometryElement extends SVGGraphicsElement {
28542
28571
  /**
28543
- * The **`SVGGeometryElement.pathLength`** property reflects the A number.
28572
+ * The **`SVGGeometryElement.pathLength`** property reflects the pathLength attribute and returns the total length of the path, in user units.
28544
28573
  *
28545
28574
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/pathLength)
28546
28575
  */
@@ -28677,31 +28706,31 @@ interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
28677
28706
  */
28678
28707
  crossOrigin: string | null;
28679
28708
  /**
28680
- * The **`height`** read-only property of the corresponding to the height attribute of the given An SVGAnimatedLength.
28709
+ * The **`height`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the height attribute of the given image element.
28681
28710
  *
28682
28711
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height)
28683
28712
  */
28684
28713
  readonly height: SVGAnimatedLength;
28685
28714
  /**
28686
- * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an element.
28715
+ * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an SVGAnimatedPreserveAspectRatio corresponding to the preserveAspectRatio attribute of the given image element.
28687
28716
  *
28688
28717
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio)
28689
28718
  */
28690
28719
  readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;
28691
28720
  /**
28692
- * The **`width`** read-only property of the corresponding to the width attribute of the given image element.
28721
+ * The **`width`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the width attribute of the given image element.
28693
28722
  *
28694
28723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/width)
28695
28724
  */
28696
28725
  readonly width: SVGAnimatedLength;
28697
28726
  /**
28698
- * The **`x`** read-only property of the corresponding to the x attribute of the given image element.
28727
+ * The **`x`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the x attribute of the given image element.
28699
28728
  *
28700
28729
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/x)
28701
28730
  */
28702
28731
  readonly x: SVGAnimatedLength;
28703
28732
  /**
28704
- * The **`y`** read-only property of the corresponding to the y attribute of the given image element.
28733
+ * The **`y`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the y attribute of the given image element.
28705
28734
  *
28706
28735
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/y)
28707
28736
  */
@@ -30343,7 +30372,7 @@ declare var SVGUnitTypes: {
30343
30372
  };
30344
30373
 
30345
30374
  /**
30346
- * The **`SVGUseElement`** interface corresponds to the use element.
30375
+ * ## SVG use DOM interface
30347
30376
  *
30348
30377
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
30349
30378
  */
@@ -30431,7 +30460,7 @@ interface Screen {
30431
30460
  */
30432
30461
  readonly height: number;
30433
30462
  /**
30434
- * The **`orientation`** read-only property of the An instance of ScreenOrientation representing the orientation of the screen.
30463
+ * The **`orientation`** read-only property of the Screen interface returns the current orientation of the screen.
30435
30464
  *
30436
30465
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/orientation)
30437
30466
  */
@@ -30466,7 +30495,7 @@ interface ScreenOrientationEventMap {
30466
30495
  */
30467
30496
  interface ScreenOrientation extends EventTarget {
30468
30497
  /**
30469
- * The **`angle`** read-only property of the angle.
30498
+ * The **`angle`** read-only property of the ScreenOrientation interface returns the document's current orientation angle.
30470
30499
  *
30471
30500
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle)
30472
30501
  */
@@ -30474,13 +30503,13 @@ interface ScreenOrientation extends EventTarget {
30474
30503
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
30475
30504
  onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
30476
30505
  /**
30477
- * The **`type`** read-only property of the type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
30506
+ * The **`type`** read-only property of the ScreenOrientation interface returns the document's current orientation type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
30478
30507
  *
30479
30508
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
30480
30509
  */
30481
30510
  readonly type: OrientationType;
30482
30511
  /**
30483
- * The **`unlock()`** method of the document from its default orientation.
30512
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30484
30513
  *
30485
30514
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30486
30515
  */
@@ -30539,13 +30568,13 @@ declare var ScriptProcessorNode: {
30539
30568
  */
30540
30569
  interface ScrollTimeline extends AnimationTimeline {
30541
30570
  /**
30542
- * The **`axis`** read-only property of the An enumerated value.
30571
+ * The **`axis`** read-only property of the ScrollTimeline interface returns an enumerated value representing the scroll axis that is driving the progress of the timeline.
30543
30572
  *
30544
30573
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/axis)
30545
30574
  */
30546
30575
  readonly axis: ScrollAxis;
30547
30576
  /**
30548
- * The **`source`** read-only property of the An Element.
30577
+ * The **`source`** read-only property of the ScrollTimeline interface returns a reference to the scrollable element (_scroller_) whose scroll position is driving the progress of the timeline and therefore the animation.
30549
30578
  *
30550
30579
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/source)
30551
30580
  */
@@ -30655,7 +30684,7 @@ interface Selection {
30655
30684
  */
30656
30685
  readonly anchorNode: Node | null;
30657
30686
  /**
30658
- * The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the In the case of Selection.anchorNode being another type of node, **`Selection.anchorOffset`** returns the number of Node.childNodes the selection's anchor is offset within the Selection.anchorNode.
30687
+ * The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the Selection.anchorNode if said node is of type Text, CDATASection or Comment.
30659
30688
  *
30660
30689
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset)
30661
30690
  */
@@ -30673,7 +30702,7 @@ interface Selection {
30673
30702
  */
30674
30703
  readonly focusNode: Node | null;
30675
30704
  /**
30676
- * The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the In the case of Selection.focusNode being another type of node, **`Selection.focusOffset`** returns the number of Node.childNodes the selection's focus is offset within the Selection.focusNode.
30705
+ * The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the Selection.focusNode if said node is of type Text, CDATASection or Comment.
30677
30706
  *
30678
30707
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusOffset)
30679
30708
  */
@@ -30691,13 +30720,13 @@ interface Selection {
30691
30720
  */
30692
30721
  readonly rangeCount: number;
30693
30722
  /**
30694
- * The **`type`** read-only property of the type of the current selection.
30723
+ * The **`type`** read-only property of the Selection interface returns a string describing the type of the current selection.
30695
30724
  *
30696
30725
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/type)
30697
30726
  */
30698
30727
  readonly type: string;
30699
30728
  /**
30700
- * The **`Selection.addRange()`** method adds a ```js-nolint addRange(range) ``` - `range` - : A Range object that will be added to the Selection.
30729
+ * The **`Selection.addRange()`** method adds a Range to a Selection.
30701
30730
  *
30702
30731
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/addRange)
30703
30732
  */
@@ -30727,7 +30756,7 @@ interface Selection {
30727
30756
  */
30728
30757
  containsNode(node: Node, allowPartialContainment?: boolean): boolean;
30729
30758
  /**
30730
- * The **`deleteFromDocument()`** method of the ```js-nolint deleteFromDocument() ``` None.
30759
+ * The **`deleteFromDocument()`** method of the Selection interface invokes the Range.deleteContents() method on the selected Range.
30731
30760
  *
30732
30761
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/deleteFromDocument)
30733
30762
  */
@@ -30820,7 +30849,7 @@ interface ServiceWorker extends EventTarget, AbstractWorker {
30820
30849
  */
30821
30850
  readonly scriptURL: string;
30822
30851
  /**
30823
- * The **`state`** read-only property of the of the service worker.
30852
+ * The **`state`** read-only property of the ServiceWorker interface returns a string representing the current state of the service worker.
30824
30853
  *
30825
30854
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state)
30826
30855
  */
@@ -30875,13 +30904,13 @@ interface ServiceWorkerContainer extends EventTarget {
30875
30904
  */
30876
30905
  readonly ready: Promise<ServiceWorkerRegistration>;
30877
30906
  /**
30878
- * The **`getRegistration()`** method of the client URL.
30907
+ * The **`getRegistration()`** method of the ServiceWorkerContainer interface gets a ServiceWorkerRegistration object whose scope URL matches the provided client URL.
30879
30908
  *
30880
30909
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistration)
30881
30910
  */
30882
30911
  getRegistration(clientURL?: string | URL): Promise<ServiceWorkerRegistration | undefined>;
30883
30912
  /**
30884
- * The **`getRegistrations()`** method of the `ServiceWorkerContainer`, in an array.
30913
+ * The **`getRegistrations()`** method of the ServiceWorkerContainer interface gets all ServiceWorkerRegistrations associated with a `ServiceWorkerContainer`, in an array.
30885
30914
  *
30886
30915
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistrations)
30887
30916
  */
@@ -30921,7 +30950,7 @@ interface ServiceWorkerRegistrationEventMap {
30921
30950
  */
30922
30951
  interface ServiceWorkerRegistration extends EventTarget {
30923
30952
  /**
30924
- * The **`active`** read-only property of the This property is initially set to `null`.
30953
+ * The **`active`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `activating` or `activated`.
30925
30954
  *
30926
30955
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active)
30927
30956
  */
@@ -30933,7 +30962,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30933
30962
  */
30934
30963
  readonly cookies: CookieStoreManager;
30935
30964
  /**
30936
- * The **`installing`** read-only property of the initially set to `null`.
30965
+ * The **`installing`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installing`.
30937
30966
  *
30938
30967
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing)
30939
30968
  */
@@ -30947,7 +30976,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30947
30976
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updatefound_event) */
30948
30977
  onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;
30949
30978
  /**
30950
- * The **`pushManager`** read-only property of the support for subscribing, getting an active subscription, and accessing push permission status.
30979
+ * The **`pushManager`** read-only property of the ServiceWorkerRegistration interface returns a reference to the PushManager interface for managing push subscriptions; this includes support for subscribing, getting an active subscription, and accessing push permission status.
30951
30980
  *
30952
30981
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/pushManager)
30953
30982
  */
@@ -30965,7 +30994,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30965
30994
  */
30966
30995
  readonly updateViaCache: ServiceWorkerUpdateViaCache;
30967
30996
  /**
30968
- * The **`waiting`** read-only property of the set to `null`.
30997
+ * The **`waiting`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installed`.
30969
30998
  *
30970
30999
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/waiting)
30971
31000
  */
@@ -30977,19 +31006,19 @@ interface ServiceWorkerRegistration extends EventTarget {
30977
31006
  */
30978
31007
  getNotifications(filter?: GetNotificationOptions): Promise<Notification[]>;
30979
31008
  /**
30980
- * The **`showNotification()`** method of the service worker.
31009
+ * The **`showNotification()`** method of the ServiceWorkerRegistration interface creates a notification on an active service worker.
30981
31010
  *
30982
31011
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/showNotification)
30983
31012
  */
30984
31013
  showNotification(title: string, options?: NotificationOptions): Promise<void>;
30985
31014
  /**
30986
- * The **`unregister()`** method of the registration and returns a Promise.
31015
+ * The **`unregister()`** method of the ServiceWorkerRegistration interface unregisters the service worker registration and returns a Promise.
30987
31016
  *
30988
31017
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister)
30989
31018
  */
30990
31019
  unregister(): Promise<boolean>;
30991
31020
  /**
30992
- * The **`update()`** method of the worker.
31021
+ * The **`update()`** method of the ServiceWorkerRegistration interface attempts to update the service worker.
30993
31022
  *
30994
31023
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update)
30995
31024
  */
@@ -31124,19 +31153,19 @@ interface SourceBufferEventMap {
31124
31153
  */
31125
31154
  interface SourceBuffer extends EventTarget {
31126
31155
  /**
31127
- * The **`appendWindowEnd`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31156
+ * The **`appendWindowEnd`** property of the SourceBuffer interface controls the timestamp for the end of the append window, a timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31128
31157
  *
31129
31158
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowEnd)
31130
31159
  */
31131
31160
  appendWindowEnd: number;
31132
31161
  /**
31133
- * The **`appendWindowStart`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31162
+ * The **`appendWindowStart`** property of the SourceBuffer interface controls the timestamp for the start of the append window, a timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31134
31163
  *
31135
31164
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowStart)
31136
31165
  */
31137
31166
  appendWindowStart: number;
31138
31167
  /**
31139
- * The **`buffered`** read-only property of the buffered in the `SourceBuffer` as a normalized TimeRanges object.
31168
+ * The **`buffered`** read-only property of the SourceBuffer interface returns the time ranges that are currently buffered in the `SourceBuffer` as a normalized TimeRanges object.
31140
31169
  *
31141
31170
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/buffered)
31142
31171
  */
@@ -31153,13 +31182,13 @@ interface SourceBuffer extends EventTarget {
31153
31182
  onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
31154
31183
  onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
31155
31184
  /**
31156
- * The **`timestampOffset`** property of the media segments that are appended to the `SourceBuffer`.
31185
+ * The **`timestampOffset`** property of the SourceBuffer interface controls the offset applied to timestamps inside media segments that are appended to the `SourceBuffer`.
31157
31186
  *
31158
31187
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset)
31159
31188
  */
31160
31189
  timestampOffset: number;
31161
31190
  /**
31162
- * The **`updating`** read-only property of the currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
31191
+ * The **`updating`** read-only property of the SourceBuffer interface indicates whether the `SourceBuffer` is currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
31163
31192
  *
31164
31193
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updating)
31165
31194
  */
@@ -31171,13 +31200,13 @@ interface SourceBuffer extends EventTarget {
31171
31200
  */
31172
31201
  abort(): void;
31173
31202
  /**
31174
- * The **`appendBuffer()`** method of the to the `SourceBuffer`.
31203
+ * The **`appendBuffer()`** method of the SourceBuffer interface appends media segment data from an ArrayBuffer, a TypedArray or a DataView object to the `SourceBuffer`.
31175
31204
  *
31176
31205
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendBuffer)
31177
31206
  */
31178
31207
  appendBuffer(data: BufferSource): void;
31179
31208
  /**
31180
- * The **`changeType()`** method of the data to conform to.
31209
+ * The **`changeType()`** method of the SourceBuffer interface sets the MIME type that future calls to SourceBuffer.appendBuffer should expect the new media data to conform to.
31181
31210
  *
31182
31211
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/changeType)
31183
31212
  */
@@ -31211,7 +31240,7 @@ interface SourceBufferListEventMap {
31211
31240
  */
31212
31241
  interface SourceBufferList extends EventTarget {
31213
31242
  /**
31214
- * The **`length`** read-only property of the An unsigned long number.
31243
+ * The **`length`** read-only property of the SourceBufferList interface returns the number of SourceBuffer objects in the list.
31215
31244
  *
31216
31245
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length)
31217
31246
  */
@@ -31238,13 +31267,13 @@ declare var SourceBufferList: {
31238
31267
  */
31239
31268
  interface SpeechRecognitionAlternative {
31240
31269
  /**
31241
- * The **`confidence`** read-only property of the confident the speech recognition system is that the recognition is correct.
31270
+ * The **`confidence`** read-only property of the SpeechRecognitionResult interface returns a numeric estimate of how confident the speech recognition system is that the recognition is correct.
31242
31271
  *
31243
31272
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/confidence)
31244
31273
  */
31245
31274
  readonly confidence: number;
31246
31275
  /**
31247
- * The **`transcript`** read-only property of the transcript of the recognized word(s).
31276
+ * The **`transcript`** read-only property of the SpeechRecognitionResult interface returns a string containing the transcript of the recognized word(s).
31248
31277
  *
31249
31278
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/transcript)
31250
31279
  */
@@ -31264,13 +31293,13 @@ declare var SpeechRecognitionAlternative: {
31264
31293
  */
31265
31294
  interface SpeechRecognitionErrorEvent extends Event {
31266
31295
  /**
31267
- * The **`error`** read-only property of the A string naming the type of error.
31296
+ * The **`error`** read-only property of the SpeechRecognitionErrorEvent interface returns the type of error raised.
31268
31297
  *
31269
31298
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/error)
31270
31299
  */
31271
31300
  readonly error: SpeechRecognitionErrorCode;
31272
31301
  /**
31273
- * The **`message`** read-only property of the error in more detail.
31302
+ * The **`message`** read-only property of the SpeechRecognitionErrorEvent interface returns a message describing the error in more detail.
31274
31303
  *
31275
31304
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/message)
31276
31305
  */
@@ -31290,13 +31319,13 @@ declare var SpeechRecognitionErrorEvent: {
31290
31319
  */
31291
31320
  interface SpeechRecognitionEvent extends Event {
31292
31321
  /**
31293
- * The **`resultIndex`** read-only property of the the SpeechRecognitionResultList 'array' that has actually changed.
31322
+ * The **`resultIndex`** read-only property of the SpeechRecognitionEvent interface returns the lowest index value result in the SpeechRecognitionResultList 'array' that has actually changed.
31294
31323
  *
31295
31324
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/resultIndex)
31296
31325
  */
31297
31326
  readonly resultIndex: number;
31298
31327
  /**
31299
- * The **`results`** read-only property of the recognition results for the current session.
31328
+ * The **`results`** read-only property of the SpeechRecognitionEvent interface returns a SpeechRecognitionResultList object representing all the speech recognition results for the current session.
31300
31329
  *
31301
31330
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/results)
31302
31331
  */
@@ -31316,19 +31345,19 @@ declare var SpeechRecognitionEvent: {
31316
31345
  */
31317
31346
  interface SpeechRecognitionResult {
31318
31347
  /**
31319
- * The **`isFinal`** read-only property of the whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.
31348
+ * The **`isFinal`** read-only property of the SpeechRecognitionResult interface is a boolean value that states whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.
31320
31349
  *
31321
31350
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/isFinal)
31322
31351
  */
31323
31352
  readonly isFinal: boolean;
31324
31353
  /**
31325
- * The **`length`** read-only property of the — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.) The number of alternatives contained in the result depends on what the recognition was first initiated.
31354
+ * The **`length`** read-only property of the SpeechRecognitionResult interface returns the length of the 'array' — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.)
31326
31355
  *
31327
31356
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/length)
31328
31357
  */
31329
31358
  readonly length: number;
31330
31359
  /**
31331
- * The **`item`** getter of the array syntax.
31360
+ * The **`item`** getter of the SpeechRecognitionResult interface is a standard getter that allows SpeechRecognitionAlternative objects within the result to be accessed via array syntax.
31332
31361
  *
31333
31362
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/item)
31334
31363
  */
@@ -31349,13 +31378,13 @@ declare var SpeechRecognitionResult: {
31349
31378
  */
31350
31379
  interface SpeechRecognitionResultList {
31351
31380
  /**
31352
- * The **`length`** read-only property of the 'array' — the number of SpeechRecognitionResult objects in the list.
31381
+ * The **`length`** read-only property of the SpeechRecognitionResultList interface returns the length of the 'array' — the number of SpeechRecognitionResult objects in the list.
31353
31382
  *
31354
31383
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/length)
31355
31384
  */
31356
31385
  readonly length: number;
31357
31386
  /**
31358
- * The **`item`** getter of the syntax.
31387
+ * The **`item`** getter of the SpeechRecognitionResultList interface is a standard getter — it allows SpeechRecognitionResult objects in the list to be accessed via array syntax.
31359
31388
  *
31360
31389
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/item)
31361
31390
  */
@@ -31381,19 +31410,19 @@ interface SpeechSynthesis extends EventTarget {
31381
31410
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/voiceschanged_event) */
31382
31411
  onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
31383
31412
  /**
31384
- * The **`paused`** read-only property of the `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
31413
+ * The **`paused`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
31385
31414
  *
31386
31415
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/paused)
31387
31416
  */
31388
31417
  readonly paused: boolean;
31389
31418
  /**
31390
- * The **`pending`** read-only property of the `true` if the utterance queue contains as-yet-unspoken utterances.
31419
+ * The **`pending`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if the utterance queue contains as-yet-unspoken utterances.
31391
31420
  *
31392
31421
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/pending)
31393
31422
  */
31394
31423
  readonly pending: boolean;
31395
31424
  /**
31396
- * The **`speaking`** read-only property of the `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a A boolean value.
31425
+ * The **`speaking`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a SpeechSynthesis/pause() state.
31397
31426
  *
31398
31427
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/speaking)
31399
31428
  */
@@ -31405,7 +31434,7 @@ interface SpeechSynthesis extends EventTarget {
31405
31434
  */
31406
31435
  cancel(): void;
31407
31436
  /**
31408
- * The **`getVoices()`** method of the current device.
31437
+ * The **`getVoices()`** method of the SpeechSynthesis interface returns a list of SpeechSynthesisVoice objects representing all the available voices on the current device.
31409
31438
  *
31410
31439
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/getVoices)
31411
31440
  */
@@ -31446,7 +31475,7 @@ declare var SpeechSynthesis: {
31446
31475
  */
31447
31476
  interface SpeechSynthesisErrorEvent extends SpeechSynthesisEvent {
31448
31477
  /**
31449
- * The **`error`** property of the A string containing the error reason.
31478
+ * The **`error`** property of the SpeechSynthesisErrorEvent interface returns an error code indicating what has gone wrong with a speech synthesis attempt.
31450
31479
  *
31451
31480
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisErrorEvent/error)
31452
31481
  */
@@ -31550,7 +31579,7 @@ interface SpeechSynthesisUtterance extends EventTarget {
31550
31579
  */
31551
31580
  rate: number;
31552
31581
  /**
31553
- * The **`text`** property of the The text may be provided as plain text, or a well-formed SSML document.
31582
+ * The **`text`** property of the SpeechSynthesisUtterance interface gets and sets the text that will be synthesized when the utterance is spoken.
31554
31583
  *
31555
31584
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/text)
31556
31585
  */
@@ -31585,7 +31614,7 @@ declare var SpeechSynthesisUtterance: {
31585
31614
  */
31586
31615
  interface SpeechSynthesisVoice {
31587
31616
  /**
31588
- * The **`default`** read-only property of the indicating whether the voice is the default voice for the current app (`true`), or not (`false`.) A boolean value.
31617
+ * The **`default`** read-only property of the SpeechSynthesisVoice interface returns a boolean value indicating whether the voice is the default voice for the current app (`true`), or not (`false`.)
31589
31618
  *
31590
31619
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/default)
31591
31620
  */
@@ -31597,19 +31626,19 @@ interface SpeechSynthesisVoice {
31597
31626
  */
31598
31627
  readonly lang: string;
31599
31628
  /**
31600
- * The **`localService`** read-only property of the indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.) This property is provided to allow differentiation in the case that some voice options are provided by a remote service; it is possible that remote voices might have extra latency, bandwidth or cost associated with them, so such distinction may be useful.
31629
+ * The **`localService`** read-only property of the SpeechSynthesisVoice interface returns a boolean value indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.)
31601
31630
  *
31602
31631
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/localService)
31603
31632
  */
31604
31633
  readonly localService: boolean;
31605
31634
  /**
31606
- * The **`name`** read-only property of the represents the voice.
31635
+ * The **`name`** read-only property of the SpeechSynthesisVoice interface returns a human-readable name that represents the voice.
31607
31636
  *
31608
31637
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/name)
31609
31638
  */
31610
31639
  readonly name: string;
31611
31640
  /**
31612
- * The **`voiceURI`** read-only property of the the speech synthesis service for this voice.
31641
+ * The **`voiceURI`** read-only property of the SpeechSynthesisVoice interface returns the type of URI and location of the speech synthesis service for this voice.
31613
31642
  *
31614
31643
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/voiceURI)
31615
31644
  */
@@ -31660,7 +31689,7 @@ declare var StereoPannerNode: {
31660
31689
  */
31661
31690
  interface Storage {
31662
31691
  /**
31663
- * The **`length`** read-only property of the `Storage` object.
31692
+ * The **`length`** read-only property of the Storage interface returns the number of data items stored in a given `Storage` object.
31664
31693
  *
31665
31694
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/length)
31666
31695
  */
@@ -31804,7 +31833,7 @@ interface StyleMedia {
31804
31833
  */
31805
31834
  interface StylePropertyMap extends StylePropertyMapReadOnly {
31806
31835
  /**
31807
- * The **`append()`** method of the `StylePropertyMap` with the given property.
31836
+ * The **`append()`** method of the StylePropertyMap interface adds the passed CSS value to the `StylePropertyMap` with the given property.
31808
31837
  *
31809
31838
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/append)
31810
31839
  */
@@ -31816,7 +31845,7 @@ interface StylePropertyMap extends StylePropertyMapReadOnly {
31816
31845
  */
31817
31846
  clear(): void;
31818
31847
  /**
31819
- * The **`delete()`** method of the property.
31848
+ * The **`delete()`** method of the StylePropertyMap interface removes the CSS declaration with the given property.
31820
31849
  *
31821
31850
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/delete)
31822
31851
  */
@@ -31841,25 +31870,25 @@ declare var StylePropertyMap: {
31841
31870
  */
31842
31871
  interface StylePropertyMapReadOnly {
31843
31872
  /**
31844
- * The **`size`** read-only property of the containing the size of the `StylePropertyMapReadOnly` object.
31873
+ * The **`size`** read-only property of the StylePropertyMapReadOnly interface returns an unsigned long integer containing the size of the `StylePropertyMapReadOnly` object.
31845
31874
  *
31846
31875
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)
31847
31876
  */
31848
31877
  readonly size: number;
31849
31878
  /**
31850
- * The **`get()`** method of the object for the first value of the specified property.
31879
+ * The **`get()`** method of the StylePropertyMapReadOnly interface returns a CSSStyleValue object for the first value of the specified property.
31851
31880
  *
31852
31881
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get)
31853
31882
  */
31854
31883
  get(property: string): undefined | CSSStyleValue;
31855
31884
  /**
31856
- * The **`getAll()`** method of the ```js-nolint getAll(property) ``` - `property` - : The name of the property to retrieve all values of.
31885
+ * The **`getAll()`** method of the StylePropertyMapReadOnly interface returns an array of CSSStyleValue objects containing the values for the provided property.
31857
31886
  *
31858
31887
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll)
31859
31888
  */
31860
31889
  getAll(property: string): CSSStyleValue[];
31861
31890
  /**
31862
- * The **`has()`** method of the property is in the `StylePropertyMapReadOnly` object.
31891
+ * The **`has()`** method of the StylePropertyMapReadOnly interface indicates whether the specified property is in the `StylePropertyMapReadOnly` object.
31863
31892
  *
31864
31893
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has)
31865
31894
  */
@@ -31879,7 +31908,7 @@ declare var StylePropertyMapReadOnly: {
31879
31908
  */
31880
31909
  interface StyleSheet {
31881
31910
  /**
31882
- * The **`disabled`** property of the applying to the document.
31911
+ * The **`disabled`** property of the StyleSheet interface determines whether the style sheet is prevented from applying to the document.
31883
31912
  *
31884
31913
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/disabled)
31885
31914
  */
@@ -31898,13 +31927,13 @@ interface StyleSheet {
31898
31927
  get media(): MediaList;
31899
31928
  set media(mediaText: string);
31900
31929
  /**
31901
- * The **`ownerNode`** property of the with the document.
31930
+ * The **`ownerNode`** property of the StyleSheet interface returns the node that associates this style sheet with the document.
31902
31931
  *
31903
31932
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/ownerNode)
31904
31933
  */
31905
31934
  readonly ownerNode: Element | ProcessingInstruction | null;
31906
31935
  /**
31907
- * The **`parentStyleSheet`** property of the the given style sheet.
31936
+ * The **`parentStyleSheet`** property of the StyleSheet interface returns the style sheet, if any, that is including the given style sheet.
31908
31937
  *
31909
31938
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/parentStyleSheet)
31910
31939
  */
@@ -31987,7 +32016,7 @@ interface SubtleCrypto {
31987
32016
  */
31988
32017
  decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;
31989
32018
  /**
31990
- * The **`deriveBits()`** method of the key.
32019
+ * The **`deriveBits()`** method of the SubtleCrypto interface can be used to derive an array of bits from a base key.
31991
32020
  *
31992
32021
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits)
31993
32022
  */
@@ -32498,7 +32527,7 @@ interface TextTrackList extends EventTarget {
32498
32527
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */
32499
32528
  onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
32500
32529
  /**
32501
- * The **TextTrackList** method **`getTrackById()`** returns the first `id` matches the specified string.
32530
+ * The **TextTrackList** method **`getTrackById()`** returns the first TextTrack object from the track list whose `id` matches the specified string.
32502
32531
  *
32503
32532
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById)
32504
32533
  */
@@ -32669,7 +32698,7 @@ interface TouchEvent extends UIEvent {
32669
32698
  */
32670
32699
  readonly altKey: boolean;
32671
32700
  /**
32672
- * The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows: - For the Element/touchstart_event event, it is a list of the touch points that became active with the current event.
32701
+ * The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
32673
32702
  *
32674
32703
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/changedTouches)
32675
32704
  */
@@ -32856,7 +32885,7 @@ declare var TransitionEvent: {
32856
32885
  */
32857
32886
  interface TreeWalker {
32858
32887
  /**
32859
- * The **`TreeWalker.currentNode`** property represents the A Node.
32888
+ * The **`TreeWalker.currentNode`** property represents the Node which the TreeWalker is currently pointing at.
32860
32889
  *
32861
32890
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/currentNode)
32862
32891
  */
@@ -32880,43 +32909,43 @@ interface TreeWalker {
32880
32909
  */
32881
32910
  readonly whatToShow: number;
32882
32911
  /**
32883
- * The **`TreeWalker.firstChild()`** method moves the current the found child.
32912
+ * The **`TreeWalker.firstChild()`** method moves the current Node to the first _visible_ child of the current node, and returns the found child.
32884
32913
  *
32885
32914
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/firstChild)
32886
32915
  */
32887
32916
  firstChild(): Node | null;
32888
32917
  /**
32889
- * The **`TreeWalker.lastChild()`** method moves the current the found child.
32918
+ * The **`TreeWalker.lastChild()`** method moves the current Node to the last _visible_ child of the current node, and returns the found child.
32890
32919
  *
32891
32920
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/lastChild)
32892
32921
  */
32893
32922
  lastChild(): Node | null;
32894
32923
  /**
32895
- * The **`TreeWalker.nextNode()`** method moves the current the found node.
32924
+ * The **`TreeWalker.nextNode()`** method moves the current Node to the next _visible_ node in the document order, and returns the found node.
32896
32925
  *
32897
32926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextNode)
32898
32927
  */
32899
32928
  nextNode(): Node | null;
32900
32929
  /**
32901
- * The **`TreeWalker.nextSibling()`** method moves the current is no such node, it returns `null` and the current node is not changed.
32930
+ * The **`TreeWalker.nextSibling()`** method moves the current Node to its next sibling, if any, and returns the found sibling.
32902
32931
  *
32903
32932
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextSibling)
32904
32933
  */
32905
32934
  nextSibling(): Node | null;
32906
32935
  /**
32907
- * The **`TreeWalker.parentNode()`** method moves the current and returns the found node.
32936
+ * The **`TreeWalker.parentNode()`** method moves the current Node to the first _visible_ ancestor node in the document order, and returns the found node.
32908
32937
  *
32909
32938
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/parentNode)
32910
32939
  */
32911
32940
  parentNode(): Node | null;
32912
32941
  /**
32913
- * The **`TreeWalker.previousNode()`** method moves the current returns the found node.
32942
+ * The **`TreeWalker.previousNode()`** method moves the current Node to the previous _visible_ node in the document order, and returns the found node.
32914
32943
  *
32915
32944
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousNode)
32916
32945
  */
32917
32946
  previousNode(): Node | null;
32918
32947
  /**
32919
- * The **`TreeWalker.previousSibling()`** method moves the current there is no such node, it returns `null` and the current node is not changed.
32948
+ * The **`TreeWalker.previousSibling()`** method moves the current Node to its previous sibling, if any, and returns the found sibling.
32920
32949
  *
32921
32950
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousSibling)
32922
32951
  */
@@ -32941,7 +32970,7 @@ interface UIEvent extends Event {
32941
32970
  */
32942
32971
  readonly detail: number;
32943
32972
  /**
32944
- * The **`UIEvent.view`** read-only property returns the is the Window object the event happened in.
32973
+ * The **`UIEvent.view`** read-only property returns the WindowProxy object from which the event was generated.
32945
32974
  *
32946
32975
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/view)
32947
32976
  */
@@ -33035,7 +33064,7 @@ interface URL {
33035
33064
  */
33036
33065
  search: string;
33037
33066
  /**
33038
- * The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL.
33067
+ * The **`searchParams`** read-only property of the URL interface returns a URLSearchParams object allowing access to the GET decoded query arguments contained in the URL.
33039
33068
  *
33040
33069
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams)
33041
33070
  */
@@ -33047,7 +33076,7 @@ interface URL {
33047
33076
  */
33048
33077
  username: string;
33049
33078
  /**
33050
- * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as ```js-nolint toJSON() ``` None.
33079
+ * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as URL.toString().
33051
33080
  *
33052
33081
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON)
33053
33082
  */
@@ -33076,7 +33105,7 @@ declare var URL: {
33076
33105
  */
33077
33106
  parse(url: string | URL, base?: string | URL): URL | null;
33078
33107
  /**
33079
- * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling Call this method when you've finished using an object URL to let the browser know not to keep the reference to the file any longer.
33108
+ * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling URL.createObjectURL_static.
33080
33109
  *
33081
33110
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static)
33082
33111
  */
@@ -33736,7 +33765,7 @@ interface VideoPlaybackQuality {
33736
33765
  */
33737
33766
  readonly corruptedVideoFrames: number;
33738
33767
  /**
33739
- * The read-only **`creationTime`** property on the the browsing context was created this quality sample was recorded.
33768
+ * The read-only **`creationTime`** property on the VideoPlaybackQuality interface reports the number of milliseconds since the browsing context was created this quality sample was recorded.
33740
33769
  *
33741
33770
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/creationTime)
33742
33771
  */
@@ -33798,26 +33827,26 @@ declare var ViewTimeline: {
33798
33827
  */
33799
33828
  interface ViewTransition {
33800
33829
  /**
33801
- * The **`finished`** read-only property of the `finished` will only reject in the case of a same-document (SPA) transition, if the callback passed to Document.startViewTransition() throws or returns a promise that rejects.
33830
+ * The **`finished`** read-only property of the ViewTransition interface is a Promise that fulfills once the transition animation is finished, and the new page view is visible and interactive to the user.
33802
33831
  *
33803
33832
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished)
33804
33833
  */
33805
33834
  readonly finished: Promise<void>;
33806
33835
  /**
33807
- * The **`ready`** read-only property of the `ready` will reject if the transition cannot begin.
33836
+ * The **`ready`** read-only property of the ViewTransition interface is a Promise that fulfills once the pseudo-element tree is created and the transition animation is about to start.
33808
33837
  *
33809
33838
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
33810
33839
  */
33811
33840
  readonly ready: Promise<void>;
33812
33841
  types: ViewTransitionTypeSet;
33813
33842
  /**
33814
- * The **`updateCallbackDone`** read-only property of the `updateCallbackDone` is useful when you don't care about the success/failure of a same-document (SPA) view transition animation, and just want to know if and when the DOM is updated.
33843
+ * The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the Document.startViewTransition() method's callback fulfills, or rejects when it rejects.
33815
33844
  *
33816
33845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone)
33817
33846
  */
33818
33847
  readonly updateCallbackDone: Promise<void>;
33819
33848
  /**
33820
- * The **`skipTransition()`** method of the ```js-nolint skipTransition() ``` None.
33849
+ * The **`skipTransition()`** method of the ViewTransition interface skips the animation part of the view transition, but doesn't skip running the associated view update.
33821
33850
  *
33822
33851
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition)
33823
33852
  */
@@ -36547,7 +36576,7 @@ interface WebSocket extends EventTarget {
36547
36576
  */
36548
36577
  readonly url: string;
36549
36578
  /**
36550
- * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing.
36579
+ * The **`WebSocket.close()`** method closes the WebSocket connection or connection attempt, if any.
36551
36580
  *
36552
36581
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close)
36553
36582
  */
@@ -36756,19 +36785,19 @@ interface WheelEvent extends MouseEvent {
36756
36785
  */
36757
36786
  readonly deltaMode: number;
36758
36787
  /**
36759
- * The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the You must check the `deltaMode` property to determine the unit of the `deltaX` value.
36788
+ * The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the WheelEvent.deltaMode unit.
36760
36789
  *
36761
36790
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaX)
36762
36791
  */
36763
36792
  readonly deltaX: number;
36764
36793
  /**
36765
- * The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the You must check the `deltaMode` property to determine the unit of the `deltaY` value.
36794
+ * The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the WheelEvent.deltaMode unit.
36766
36795
  *
36767
36796
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaY)
36768
36797
  */
36769
36798
  readonly deltaY: number;
36770
36799
  /**
36771
- * The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the You must check the `deltaMode` property to determine the unit of the `deltaZ` value.
36800
+ * The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the WheelEvent.deltaMode unit.
36772
36801
  *
36773
36802
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaZ)
36774
36803
  */
@@ -36871,7 +36900,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
36871
36900
  */
36872
36901
  readonly history: History;
36873
36902
  /**
36874
- * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
36903
+ * The read-only **`innerHeight`** property of the Window interface returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present.
36875
36904
  *
36876
36905
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
36877
36906
  */
@@ -36883,7 +36912,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
36883
36912
  */
36884
36913
  readonly innerWidth: number;
36885
36914
  /**
36886
- * Returns the number of frames (either frame or A number.
36915
+ * Returns the number of frames (either frame or iframe elements) in the window.
36887
36916
  *
36888
36917
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
36889
36918
  */
@@ -37051,7 +37080,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
37051
37080
  */
37052
37081
  readonly speechSynthesis: SpeechSynthesis;
37053
37082
  /**
37054
- * The **`status`** property of the bar at the bottom of the browser window.
37083
+ * The **`status`** property of the Window interface was originally intended to set the text in the status bar at the bottom of the browser window.
37055
37084
  * @deprecated
37056
37085
  *
37057
37086
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)
@@ -37419,7 +37448,7 @@ declare var Worker: {
37419
37448
  */
37420
37449
  interface Worklet {
37421
37450
  /**
37422
- * The **`addModule()`** method of the adds it to the current `Worklet`.
37451
+ * The **`addModule()`** method of the Worklet interface loads the module in the given JavaScript file and adds it to the current `Worklet`.
37423
37452
  *
37424
37453
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worklet/addModule)
37425
37454
  */
@@ -37481,7 +37510,7 @@ interface WritableStreamDefaultController {
37481
37510
  */
37482
37511
  readonly signal: AbortSignal;
37483
37512
  /**
37484
- * The **`error()`** method of the with the associated stream to error.
37513
+ * The **`error()`** method of the WritableStreamDefaultController interface causes any future interactions with the associated stream to error.
37485
37514
  *
37486
37515
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error)
37487
37516
  */
@@ -37500,43 +37529,43 @@ declare var WritableStreamDefaultController: {
37500
37529
  */
37501
37530
  interface WritableStreamDefaultWriter<W = any> {
37502
37531
  /**
37503
- * The **`closed`** read-only property of the the stream errors or the writer's lock is released.
37532
+ * The **`closed`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that fulfills if the stream becomes closed, or rejects if the stream errors or the writer's lock is released.
37504
37533
  *
37505
37534
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed)
37506
37535
  */
37507
37536
  readonly closed: Promise<void>;
37508
37537
  /**
37509
- * The **`desiredSize`** read-only property of the to fill the stream's internal queue.
37538
+ * The **`desiredSize`** read-only property of the WritableStreamDefaultWriter interface returns the desired size required to fill the stream's internal queue.
37510
37539
  *
37511
37540
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize)
37512
37541
  */
37513
37542
  readonly desiredSize: number | null;
37514
37543
  /**
37515
- * The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
37544
+ * The **`ready`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
37516
37545
  *
37517
37546
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready)
37518
37547
  */
37519
37548
  readonly ready: Promise<void>;
37520
37549
  /**
37521
- * The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
37550
+ * The **`abort()`** method of the WritableStreamDefaultWriter interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
37522
37551
  *
37523
37552
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort)
37524
37553
  */
37525
37554
  abort(reason?: any): Promise<void>;
37526
37555
  /**
37527
- * The **`close()`** method of the stream.
37556
+ * The **`close()`** method of the WritableStreamDefaultWriter interface closes the associated writable stream.
37528
37557
  *
37529
37558
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close)
37530
37559
  */
37531
37560
  close(): Promise<void>;
37532
37561
  /**
37533
- * The **`releaseLock()`** method of the corresponding stream.
37562
+ * The **`releaseLock()`** method of the WritableStreamDefaultWriter interface releases the writer's lock on the corresponding stream.
37534
37563
  *
37535
37564
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock)
37536
37565
  */
37537
37566
  releaseLock(): void;
37538
37567
  /**
37539
- * The **`write()`** method of the operation.
37568
+ * The **`write()`** method of the WritableStreamDefaultWriter interface writes a passed chunk of data to a WritableStream and its underlying sink, then returns a Promise that resolves to indicate the success or failure of the write operation.
37540
37569
  *
37541
37570
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
37542
37571
  */
@@ -37810,7 +37839,7 @@ interface XPathEvaluatorBase {
37810
37839
  */
37811
37840
  interface XPathExpression {
37812
37841
  /**
37813
- * The **`evaluate()`** method of the returns an XPathResult.
37842
+ * The **`evaluate()`** method of the XPathExpression interface executes an XPath expression on the given node or document and returns an XPathResult.
37814
37843
  *
37815
37844
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathExpression/evaluate)
37816
37845
  */
@@ -37829,55 +37858,55 @@ declare var XPathExpression: {
37829
37858
  */
37830
37859
  interface XPathResult {
37831
37860
  /**
37832
- * The read-only **`booleanValue`** property of the The return value is the boolean value of the `XPathResult` returned by In case XPathResult.resultType is not `BOOLEAN_TYPE`, a The following example shows the use of the `booleanValue` property.
37861
+ * The read-only **`booleanValue`** property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being `BOOLEAN_TYPE`.
37833
37862
  *
37834
37863
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/booleanValue)
37835
37864
  */
37836
37865
  readonly booleanValue: boolean;
37837
37866
  /**
37838
- * The read-only **`invalidIteratorState`** property of the is `true` if XPathResult.resultType is `UNORDERED_NODE_ITERATOR_TYPE` or `ORDERED_NODE_ITERATOR_TYPE` and the document has been modified since this result was returned.
37867
+ * The read-only **`invalidIteratorState`** property of the XPathResult interface signifies that the iterator has become invalid.
37839
37868
  *
37840
37869
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/invalidIteratorState)
37841
37870
  */
37842
37871
  readonly invalidIteratorState: boolean;
37843
37872
  /**
37844
- * The read-only **`numberValue`** property of the The return value is the numeric value of the `XPathResult` returned by In case XPathResult.resultType is not `NUMBER_TYPE`, a The following example shows the use of the `numberValue` property.
37873
+ * The read-only **`numberValue`** property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being `NUMBER_TYPE`.
37845
37874
  *
37846
37875
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/numberValue)
37847
37876
  */
37848
37877
  readonly numberValue: number;
37849
37878
  /**
37850
- * The read-only **`resultType`** property of the the type constants.
37879
+ * The read-only **`resultType`** property of the XPathResult interface represents the type of the result, as defined by the type constants.
37851
37880
  *
37852
37881
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/resultType)
37853
37882
  */
37854
37883
  readonly resultType: number;
37855
37884
  /**
37856
- * The read-only **`singleNodeValue`** property of the `null` in case no node was matched of a result with `FIRST_ORDERED_NODE_TYPE`.
37885
+ * The read-only **`singleNodeValue`** property of the XPathResult interface returns a Node value or `null` in case no node was matched of a result with XPathResult.resultType being `ANY_UNORDERED_NODE_TYPE` or `FIRST_ORDERED_NODE_TYPE`.
37857
37886
  *
37858
37887
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/singleNodeValue)
37859
37888
  */
37860
37889
  readonly singleNodeValue: Node | null;
37861
37890
  /**
37862
- * The read-only **`snapshotLength`** property of the snapshot.
37891
+ * The read-only **`snapshotLength`** property of the XPathResult interface represents the number of nodes in the result snapshot.
37863
37892
  *
37864
37893
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotLength)
37865
37894
  */
37866
37895
  readonly snapshotLength: number;
37867
37896
  /**
37868
- * The read-only **`stringValue`** property of the The return value is the string value of the `XPathResult` returned by In case XPathResult.resultType is not `STRING_TYPE`, a The following example shows the use of the `stringValue` property.
37897
+ * The read-only **`stringValue`** property of the XPathResult interface returns the string value of a result with XPathResult.resultType being `STRING_TYPE`.
37869
37898
  *
37870
37899
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/stringValue)
37871
37900
  */
37872
37901
  readonly stringValue: string;
37873
37902
  /**
37874
- * The **`iterateNext()`** method of the next node from it or `null` if there are no more nodes.
37903
+ * The **`iterateNext()`** method of the XPathResult interface iterates over a node set result and returns the next node from it or `null` if there are no more nodes.
37875
37904
  *
37876
37905
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/iterateNext)
37877
37906
  */
37878
37907
  iterateNext(): Node | null;
37879
37908
  /**
37880
- * The **`snapshotItem()`** method of the `null` in case the index is not within the range of nodes.
37909
+ * The **`snapshotItem()`** method of the XPathResult interface returns an item of the snapshot collection or `null` in case the index is not within the range of nodes.
37881
37910
  *
37882
37911
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotItem)
37883
37912
  */
@@ -38967,7 +38996,7 @@ declare var frames: WindowProxy;
38967
38996
  */
38968
38997
  declare var history: History;
38969
38998
  /**
38970
- * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
38999
+ * The read-only **`innerHeight`** property of the Window interface returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present.
38971
39000
  *
38972
39001
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
38973
39002
  */
@@ -38979,7 +39008,7 @@ declare var innerHeight: number;
38979
39008
  */
38980
39009
  declare var innerWidth: number;
38981
39010
  /**
38982
- * Returns the number of frames (either frame or A number.
39011
+ * Returns the number of frames (either frame or iframe elements) in the window.
38983
39012
  *
38984
39013
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
38985
39014
  */
@@ -39147,7 +39176,7 @@ declare var self: Window & typeof globalThis;
39147
39176
  */
39148
39177
  declare var speechSynthesis: SpeechSynthesis;
39149
39178
  /**
39150
- * The **`status`** property of the bar at the bottom of the browser window.
39179
+ * The **`status`** property of the Window interface was originally intended to set the text in the status bar at the bottom of the browser window.
39151
39180
  * @deprecated
39152
39181
  *
39153
39182
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)
@@ -39805,6 +39834,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
39805
39834
  type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
39806
39835
  type FontFaceSetLoadStatus = "loaded" | "loading";
39807
39836
  type FullscreenNavigationUI = "auto" | "hide" | "show";
39837
+ type GPUPipelineErrorReason = "internal" | "validation";
39808
39838
  type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble";
39809
39839
  type GamepadHapticsResult = "complete" | "preempted";
39810
39840
  type GamepadMappingType = "" | "standard" | "xr-standard";