@types/web 0.0.251 → 0.0.252

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.5/index.d.ts CHANGED
@@ -3121,7 +3121,7 @@ interface Animation extends EventTarget {
3121
3121
  */
3122
3122
  reverse(): void;
3123
3123
  /**
3124
- * The **`updatePlaybackRate()`** method of the Web Animations API's synchronizing its playback position.
3124
+ * The **`updatePlaybackRate()`** method of the Web Animations API's Animation Interface sets the speed of an animation after first synchronizing its playback position.
3125
3125
  *
3126
3126
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Animation/updatePlaybackRate)
3127
3127
  */
@@ -3342,7 +3342,7 @@ interface AudioBuffer {
3342
3342
  */
3343
3343
  readonly sampleRate: number;
3344
3344
  /**
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.
3345
+ * The **`copyFromChannel()`** method of the AudioBuffer interface copies the audio sample data from the specified channel of the `AudioBuffer` to a specified Float32Array.
3346
3346
  *
3347
3347
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBuffer/copyFromChannel)
3348
3348
  */
@@ -3379,7 +3379,7 @@ interface AudioBufferSourceNode extends AudioScheduledSourceNode {
3379
3379
  */
3380
3380
  buffer: AudioBuffer | null;
3381
3381
  /**
3382
- * The **`detune`** property of the representing detuning of oscillation in cents.
3382
+ * The **`detune`** property of the AudioBufferSourceNode interface is a k-rate AudioParam representing detuning of oscillation in cents.
3383
3383
  *
3384
3384
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioBufferSourceNode/detune)
3385
3385
  */
@@ -3432,7 +3432,7 @@ declare var AudioBufferSourceNode: {
3432
3432
  */
3433
3433
  interface AudioContext extends BaseAudioContext {
3434
3434
  /**
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.
3435
+ * 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
3436
  *
3437
3437
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/baseLatency)
3438
3438
  */
@@ -3468,7 +3468,7 @@ interface AudioContext extends BaseAudioContext {
3468
3468
  */
3469
3469
  createMediaStreamSource(mediaStream: MediaStream): MediaStreamAudioSourceNode;
3470
3470
  /**
3471
- * The **`getOutputTimestamp()`** method of the containing two audio timestamp values relating to the current audio context.
3471
+ * The **`getOutputTimestamp()`** method of the AudioContext interface returns a new `AudioTimestamp` object containing two audio timestamp values relating to the current audio context.
3472
3472
  *
3473
3473
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioContext/getOutputTimestamp)
3474
3474
  */
@@ -3838,7 +3838,7 @@ interface AudioNode extends EventTarget {
3838
3838
  */
3839
3839
  channelInterpretation: ChannelInterpretation;
3840
3840
  /**
3841
- * The read-only `context` property of the the node is participating in.
3841
+ * 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
3842
  *
3843
3843
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/context)
3844
3844
  */
@@ -3856,7 +3856,7 @@ interface AudioNode extends EventTarget {
3856
3856
  */
3857
3857
  readonly numberOfOutputs: number;
3858
3858
  /**
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.
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 AudioParam, so that the node's output data is automatically used to change the value of that parameter over time.
3860
3860
  *
3861
3861
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioNode/connect)
3862
3862
  */
@@ -3913,7 +3913,7 @@ interface AudioParam {
3913
3913
  */
3914
3914
  value: number;
3915
3915
  /**
3916
- * The **`cancelAndHoldAtTime()`** method of the `AudioParam` but holds its value at a given time until further changes are made using other methods.
3916
+ * 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
3917
  *
3918
3918
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/cancelAndHoldAtTime)
3919
3919
  */
@@ -3937,19 +3937,19 @@ interface AudioParam {
3937
3937
  */
3938
3938
  linearRampToValueAtTime(value: number, endTime: number): AudioParam;
3939
3939
  /**
3940
- * The `setTargetAtTime()` method of the `AudioParam` value.
3940
+ * The `setTargetAtTime()` method of the AudioParam interface schedules the start of a gradual change to the `AudioParam` value.
3941
3941
  *
3942
3942
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setTargetAtTime)
3943
3943
  */
3944
3944
  setTargetAtTime(target: number, startTime: number, timeConstant: number): AudioParam;
3945
3945
  /**
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.
3946
+ * 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
3947
  *
3948
3948
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueAtTime)
3949
3949
  */
3950
3950
  setValueAtTime(value: number, startTime: number): AudioParam;
3951
3951
  /**
3952
- * The **`setValueCurveAtTime()`** method of the following a curve defined by a list of values.
3952
+ * The **`setValueCurveAtTime()`** method of the AudioParam interface schedules the parameter's value to change following a curve defined by a list of values.
3953
3953
  *
3954
3954
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/setValueCurveAtTime)
3955
3955
  */
@@ -4074,13 +4074,13 @@ interface AudioWorkletNode extends AudioNode {
4074
4074
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/processorerror_event) */
4075
4075
  onprocessorerror: ((this: AudioWorkletNode, ev: ErrorEvent) => any) | null;
4076
4076
  /**
4077
- * The read-only **`parameters`** property of the underlying AudioWorkletProcessor according to its getter.
4077
+ * The read-only **`parameters`** property of the AudioWorkletNode interface returns the associated AudioParamMap — that is, a `Map`-like collection of AudioParam objects.
4078
4078
  *
4079
4079
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/parameters)
4080
4080
  */
4081
4081
  readonly parameters: AudioParamMap;
4082
4082
  /**
4083
- * The read-only **`port`** property of the associated AudioWorkletProcessor.
4083
+ * The read-only **`port`** property of the AudioWorkletNode interface returns the associated MessagePort.
4084
4084
  *
4085
4085
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioWorkletNode/port)
4086
4086
  */
@@ -4110,7 +4110,7 @@ interface AuthenticatorAssertionResponse extends AuthenticatorResponse {
4110
4110
  */
4111
4111
  readonly authenticatorData: ArrayBuffer;
4112
4112
  /**
4113
- * The **`signature`** read-only property of the object which is the signature of the authenticator for both the client data (AuthenticatorResponse.clientDataJSON).
4113
+ * 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
4114
  *
4115
4115
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAssertionResponse/signature)
4116
4116
  */
@@ -4136,7 +4136,7 @@ declare var AuthenticatorAssertionResponse: {
4136
4136
  */
4137
4137
  interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
4138
4138
  /**
4139
- * The **`attestationObject`** property of the entire `attestationObject` with a private key that is stored in the authenticator when it is manufactured.
4139
+ * 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
4140
  *
4141
4141
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject)
4142
4142
  */
@@ -4180,7 +4180,7 @@ declare var AuthenticatorAttestationResponse: {
4180
4180
  */
4181
4181
  interface AuthenticatorResponse {
4182
4182
  /**
4183
- * The **`clientDataJSON`** property of the AuthenticatorResponse interface stores a JSON string in an An ArrayBuffer.
4183
+ * 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
4184
  *
4185
4185
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorResponse/clientDataJSON)
4186
4186
  */
@@ -4222,7 +4222,7 @@ interface BaseAudioContextEventMap {
4222
4222
  */
4223
4223
  interface BaseAudioContext extends EventTarget {
4224
4224
  /**
4225
- * The `audioWorklet` read-only property of the processing.
4225
+ * 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
4226
  * Available only in secure contexts.
4227
4227
  *
4228
4228
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/audioWorklet)
@@ -4261,7 +4261,7 @@ interface BaseAudioContext extends EventTarget {
4261
4261
  */
4262
4262
  readonly state: AudioContextState;
4263
4263
  /**
4264
- * The `createAnalyser()` method of the can be used to expose audio time and frequency data and create data visualizations.
4264
+ * 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
4265
  *
4266
4266
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createAnalyser)
4267
4267
  */
@@ -4297,7 +4297,7 @@ interface BaseAudioContext extends EventTarget {
4297
4297
  */
4298
4298
  createChannelSplitter(numberOfOutputs?: number): ChannelSplitterNode;
4299
4299
  /**
4300
- * The **`createConstantSource()`** property of the BaseAudioContext interface creates a outputs a monaural (one-channel) sound signal whose samples all have the same value.
4300
+ * 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
4301
  *
4302
4302
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createConstantSource)
4303
4303
  */
@@ -4309,7 +4309,7 @@ interface BaseAudioContext extends EventTarget {
4309
4309
  */
4310
4310
  createConvolver(): ConvolverNode;
4311
4311
  /**
4312
- * The `createDelay()` method of the which is used to delay the incoming audio signal by a certain amount of time.
4312
+ * 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
4313
  *
4314
4314
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/createDelay)
4315
4315
  */
@@ -4370,7 +4370,7 @@ interface BaseAudioContext extends EventTarget {
4370
4370
  */
4371
4371
  createWaveShaper(): WaveShaperNode;
4372
4372
  /**
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.
4373
+ * 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
4374
  *
4375
4375
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BaseAudioContext/decodeAudioData)
4376
4376
  */
@@ -4393,7 +4393,7 @@ declare var BaseAudioContext: {
4393
4393
  */
4394
4394
  interface BeforeUnloadEvent extends Event {
4395
4395
  /**
4396
- * The **`returnValue`** property of the `returnValue` is initialized to an empty string (`''`) value.
4396
+ * 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
4397
  * @deprecated
4398
4398
  *
4399
4399
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)
@@ -4498,7 +4498,7 @@ interface Blob {
4498
4498
  */
4499
4499
  stream(): ReadableStream<Uint8Array>;
4500
4500
  /**
4501
- * The **`text()`** method of the string containing the contents of the blob, interpreted as UTF-8.
4501
+ * 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
4502
  *
4503
4503
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text)
4504
4504
  */
@@ -4639,7 +4639,7 @@ declare var CDATASection: {
4639
4639
  */
4640
4640
  interface CSSAnimation extends Animation {
4641
4641
  /**
4642
- * The **`animationName`** property of the specifies one or more keyframe at-rules which describe the animation applied to the element.
4642
+ * The **`animationName`** property of the CSSAnimation interface returns the animation-name.
4643
4643
  *
4644
4644
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSAnimation/animationName)
4645
4645
  */
@@ -4860,19 +4860,19 @@ declare var CSSFontPaletteValuesRule: {
4860
4860
  */
4861
4861
  interface CSSGroupingRule extends CSSRule {
4862
4862
  /**
4863
- * The **`cssRules`** property of the a collection of CSSRule objects.
4863
+ * The **`cssRules`** property of the CSSGroupingRule interface returns a CSSRuleList containing a collection of CSSRule objects.
4864
4864
  *
4865
4865
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/cssRules)
4866
4866
  */
4867
4867
  readonly cssRules: CSSRuleList;
4868
4868
  /**
4869
- * The **`deleteRule()`** method of the rules.
4869
+ * The **`deleteRule()`** method of the CSSGroupingRule interface removes a CSS rule from a list of child CSS rules.
4870
4870
  *
4871
4871
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/deleteRule)
4872
4872
  */
4873
4873
  deleteRule(index: number): void;
4874
4874
  /**
4875
- * 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.
4875
+ * The **`insertRule()`** method of the CSSGroupingRule interface adds a new CSS rule to a list of CSS rules.
4876
4876
  *
4877
4877
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/insertRule)
4878
4878
  */
@@ -4904,7 +4904,7 @@ declare var CSSImageValue: {
4904
4904
  */
4905
4905
  interface CSSImportRule extends CSSRule {
4906
4906
  /**
4907
- * The read-only **`href`** property of the The resolved URL will be the `href` attribute of the associated stylesheet.
4907
+ * The read-only **`href`** property of the CSSImportRule interface returns the URL specified by the @import at-rule.
4908
4908
  *
4909
4909
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/href)
4910
4910
  */
@@ -4916,13 +4916,13 @@ interface CSSImportRule extends CSSRule {
4916
4916
  */
4917
4917
  readonly layerName: string | null;
4918
4918
  /**
4919
- * The read-only **`media`** property of the containing the value of the `media` attribute of the associated stylesheet.
4919
+ * The read-only **`media`** property of the CSSImportRule interface returns a MediaList object, containing the value of the `media` attribute of the associated stylesheet.
4920
4920
  *
4921
4921
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media)
4922
4922
  */
4923
4923
  readonly media: MediaList;
4924
4924
  /**
4925
- * The read-only **`styleSheet`** property of the in the form of a CSSStyleSheet object.
4925
+ * The read-only **`styleSheet`** property of the CSSImportRule interface returns the CSS Stylesheet specified by the @import at-rule.
4926
4926
  *
4927
4927
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet)
4928
4928
  */
@@ -5022,7 +5022,7 @@ declare var CSSKeyframesRule: {
5022
5022
  */
5023
5023
  interface CSSKeywordValue extends CSSStyleValue {
5024
5024
  /**
5025
- * The **`value`** property of the `CSSKeywordValue`.
5025
+ * The **`value`** property of the CSSKeywordValue interface returns or sets the value of the `CSSKeywordValue`.
5026
5026
  *
5027
5027
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value)
5028
5028
  */
@@ -5090,7 +5090,7 @@ declare var CSSMathClamp: {
5090
5090
  */
5091
5091
  interface CSSMathInvert extends CSSMathValue {
5092
5092
  /**
5093
- * The CSSMathInvert.value read-only property of the A CSSNumericValue.
5093
+ * The CSSMathInvert.value read-only property of the CSSMathInvert interface returns a CSSNumericValue object.
5094
5094
  *
5095
5095
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value)
5096
5096
  */
@@ -5109,7 +5109,7 @@ declare var CSSMathInvert: {
5109
5109
  */
5110
5110
  interface CSSMathMax extends CSSMathValue {
5111
5111
  /**
5112
- * The CSSMathMax.values read-only property of the which contains one or more CSSNumericValue objects.
5112
+ * The CSSMathMax.values read-only property of the CSSMathMax interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5113
5113
  *
5114
5114
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values)
5115
5115
  */
@@ -5128,7 +5128,7 @@ declare var CSSMathMax: {
5128
5128
  */
5129
5129
  interface CSSMathMin extends CSSMathValue {
5130
5130
  /**
5131
- * The CSSMathMin.values read-only property of the which contains one or more CSSNumericValue objects.
5131
+ * The CSSMathMin.values read-only property of the CSSMathMin interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5132
5132
  *
5133
5133
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values)
5134
5134
  */
@@ -5147,7 +5147,7 @@ declare var CSSMathMin: {
5147
5147
  */
5148
5148
  interface CSSMathNegate extends CSSMathValue {
5149
5149
  /**
5150
- * The CSSMathNegate.value read-only property of the A CSSNumericValue.
5150
+ * The CSSMathNegate.value read-only property of the CSSMathNegate interface returns a CSSNumericValue object.
5151
5151
  *
5152
5152
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value)
5153
5153
  */
@@ -5166,7 +5166,7 @@ declare var CSSMathNegate: {
5166
5166
  */
5167
5167
  interface CSSMathProduct extends CSSMathValue {
5168
5168
  /**
5169
- * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a A CSSNumericArray.
5169
+ * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5170
5170
  *
5171
5171
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values)
5172
5172
  */
@@ -5223,7 +5223,7 @@ declare var CSSMathValue: {
5223
5223
  */
5224
5224
  interface CSSMatrixComponent extends CSSTransformComponent {
5225
5225
  /**
5226
- * The **`matrix`** property of the See the matrix() and matrix3d() pages for examples.
5226
+ * The **`matrix`** property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.
5227
5227
  *
5228
5228
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)
5229
5229
  */
@@ -5242,7 +5242,7 @@ declare var CSSMatrixComponent: {
5242
5242
  */
5243
5243
  interface CSSMediaRule extends CSSConditionRule {
5244
5244
  /**
5245
- * The read-only **`media`** property of the destination medium for style information.
5245
+ * The read-only **`media`** property of the CSSMediaRule interface returns a MediaList representing the intended destination medium for style information.
5246
5246
  *
5247
5247
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media)
5248
5248
  */
@@ -5305,7 +5305,7 @@ declare var CSSNestedDeclarations: {
5305
5305
  */
5306
5306
  interface CSSNumericArray {
5307
5307
  /**
5308
- * The read-only **`length`** property of the An integer representing the number of CSSNumericValue objects in the list.
5308
+ * The read-only **`length`** property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.
5309
5309
  *
5310
5310
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length)
5311
5311
  */
@@ -5326,61 +5326,61 @@ declare var CSSNumericArray: {
5326
5326
  */
5327
5327
  interface CSSNumericValue extends CSSStyleValue {
5328
5328
  /**
5329
- * The **`add()`** method of the `CSSNumericValue`.
5329
+ * The **`add()`** method of the CSSNumericValue interface adds a supplied number to the `CSSNumericValue`.
5330
5330
  *
5331
5331
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add)
5332
5332
  */
5333
5333
  add(...values: CSSNumberish[]): CSSNumericValue;
5334
5334
  /**
5335
- * The **`div()`** method of the supplied value.
5335
+ * The **`div()`** method of the CSSNumericValue interface divides the `CSSNumericValue` by the supplied value.
5336
5336
  *
5337
5337
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/div)
5338
5338
  */
5339
5339
  div(...values: CSSNumberish[]): CSSNumericValue;
5340
5340
  /**
5341
- * The **`equals()`** method of the value are strictly equal.
5341
+ * The **`equals()`** method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal.
5342
5342
  *
5343
5343
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)
5344
5344
  */
5345
5345
  equals(...value: CSSNumberish[]): boolean;
5346
5346
  /**
5347
- * The **`max()`** method of the passed.
5347
+ * The **`max()`** method of the CSSNumericValue interface returns the highest value from among the values passed.
5348
5348
  *
5349
5349
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/max)
5350
5350
  */
5351
5351
  max(...values: CSSNumberish[]): CSSNumericValue;
5352
5352
  /**
5353
- * The **`min()`** method of the values passed.
5353
+ * The **`min()`** method of the CSSNumericValue interface returns the lowest value from among those values passed.
5354
5354
  *
5355
5355
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/min)
5356
5356
  */
5357
5357
  min(...values: CSSNumberish[]): CSSNumericValue;
5358
5358
  /**
5359
- * The **`mul()`** method of the the supplied value.
5359
+ * The **`mul()`** method of the CSSNumericValue interface multiplies the `CSSNumericValue` by the supplied value.
5360
5360
  *
5361
5361
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/mul)
5362
5362
  */
5363
5363
  mul(...values: CSSNumberish[]): CSSNumericValue;
5364
5364
  /**
5365
- * The **`sub()`** method of the `CSSNumericValue`.
5365
+ * The **`sub()`** method of the CSSNumericValue interface subtracts a supplied number from the `CSSNumericValue`.
5366
5366
  *
5367
5367
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/sub)
5368
5368
  */
5369
5369
  sub(...values: CSSNumberish[]): CSSNumericValue;
5370
5370
  /**
5371
- * The **`to()`** method of the another.
5371
+ * The **`to()`** method of the CSSNumericValue interface converts a numeric value from one unit to another.
5372
5372
  *
5373
5373
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/to)
5374
5374
  */
5375
5375
  to(unit: string): CSSUnitValue;
5376
5376
  /**
5377
- * The **`toSum()`** method of the ```js-nolint toSum(units) ``` - `units` - : The units to convert to.
5377
+ * The **`toSum()`** method of the CSSNumericValue interface converts the object's value to a CSSMathSum object to values of the specified unit.
5378
5378
  *
5379
5379
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/toSum)
5380
5380
  */
5381
5381
  toSum(...units: string[]): CSSMathSum;
5382
5382
  /**
5383
- * The **`type()`** method of the `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
5383
+ * The **`type()`** method of the CSSNumericValue interface returns the type of `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
5384
5384
  *
5385
5385
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/type)
5386
5386
  */
@@ -5391,7 +5391,7 @@ declare var CSSNumericValue: {
5391
5391
  prototype: CSSNumericValue;
5392
5392
  new(): CSSNumericValue;
5393
5393
  /**
5394
- * The **`parse()`** static method of the members are value and the units.
5394
+ * The **`parse()`** static method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.
5395
5395
  *
5396
5396
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/parse_static)
5397
5397
  */
@@ -5463,7 +5463,7 @@ declare var CSSPageRule: {
5463
5463
  */
5464
5464
  interface CSSPerspective extends CSSTransformComponent {
5465
5465
  /**
5466
- * The **`length`** property of the It is used to apply a perspective transform to the element and its content.
5466
+ * The **`length`** property of the CSSPerspective interface sets the distance from z=0.
5467
5467
  *
5468
5468
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length)
5469
5469
  */
@@ -5697,25 +5697,25 @@ declare var CSSPropertyRule: {
5697
5697
  */
5698
5698
  interface CSSRotate extends CSSTransformComponent {
5699
5699
  /**
5700
- * The **`angle`** property of the denotes a clockwise rotation, a negative angle a counter-clockwise one.
5700
+ * The **`angle`** property of the CSSRotate interface gets and sets the angle of rotation.
5701
5701
  *
5702
5702
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle)
5703
5703
  */
5704
5704
  angle: CSSNumericValue;
5705
5705
  /**
5706
- * The **`x`** property of the translating vector.
5706
+ * The **`x`** property of the CSSRotate interface gets and sets the abscissa or x-axis of the translating vector.
5707
5707
  *
5708
5708
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/x)
5709
5709
  */
5710
5710
  x: CSSNumberish;
5711
5711
  /**
5712
- * The **`y`** property of the translating vector.
5712
+ * The **`y`** property of the CSSRotate interface gets and sets the ordinate or y-axis of the translating vector.
5713
5713
  *
5714
5714
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/y)
5715
5715
  */
5716
5716
  y: CSSNumberish;
5717
5717
  /**
5718
- * The **`z`** property of the vector.
5718
+ * The **`z`** property of the CSSRotate interface representing the z-component of the translating vector.
5719
5719
  *
5720
5720
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)
5721
5721
  */
@@ -5747,13 +5747,13 @@ interface CSSRule {
5747
5747
  */
5748
5748
  readonly parentRule: CSSRule | null;
5749
5749
  /**
5750
- * The **`parentStyleSheet`** property of the the current rule is defined.
5750
+ * The **`parentStyleSheet`** property of the CSSRule interface returns the StyleSheet object in which the current rule is defined.
5751
5751
  *
5752
5752
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/parentStyleSheet)
5753
5753
  */
5754
5754
  readonly parentStyleSheet: CSSStyleSheet | null;
5755
5755
  /**
5756
- * The read-only **`type`** property of the indicating which type of rule the CSSRule represents.
5756
+ * 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.
5757
5757
  * @deprecated
5758
5758
  *
5759
5759
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/type)
@@ -5823,19 +5823,19 @@ declare var CSSRuleList: {
5823
5823
  */
5824
5824
  interface CSSScale extends CSSTransformComponent {
5825
5825
  /**
5826
- * The **`x`** property of the translating vector.
5826
+ * The **`x`** property of the CSSScale interface gets and sets the abscissa or x-axis of the translating vector.
5827
5827
  *
5828
5828
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x)
5829
5829
  */
5830
5830
  x: CSSNumberish;
5831
5831
  /**
5832
- * The **`y`** property of the translating vector.
5832
+ * The **`y`** property of the CSSScale interface gets and sets the ordinate or y-axis of the translating vector.
5833
5833
  *
5834
5834
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/y)
5835
5835
  */
5836
5836
  y: CSSNumberish;
5837
5837
  /**
5838
- * The **`z`** property of the vector.
5838
+ * The **`z`** property of the CSSScale interface representing the z-component of the translating vector.
5839
5839
  *
5840
5840
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/z)
5841
5841
  */
@@ -5879,13 +5879,13 @@ declare var CSSScopeRule: {
5879
5879
  */
5880
5880
  interface CSSSkew extends CSSTransformComponent {
5881
5881
  /**
5882
- * The **`ax`** property of the along the x-axis (or abscissa).
5882
+ * The **`ax`** property of the CSSSkew interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
5883
5883
  *
5884
5884
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax)
5885
5885
  */
5886
5886
  ax: CSSNumericValue;
5887
5887
  /**
5888
- * The **`ay`** property of the along the y-axis (or ordinate).
5888
+ * The **`ay`** property of the CSSSkew interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
5889
5889
  *
5890
5890
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ay)
5891
5891
  */
@@ -5904,7 +5904,7 @@ declare var CSSSkew: {
5904
5904
  */
5905
5905
  interface CSSSkewX extends CSSTransformComponent {
5906
5906
  /**
5907
- * The **`ax`** property of the along the x-axis (or abscissa).
5907
+ * The **`ax`** property of the CSSSkewX interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
5908
5908
  *
5909
5909
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax)
5910
5910
  */
@@ -5923,7 +5923,7 @@ declare var CSSSkewX: {
5923
5923
  */
5924
5924
  interface CSSSkewY extends CSSTransformComponent {
5925
5925
  /**
5926
- * The **`ay`** property of the along the y-axis (or ordinate).
5926
+ * The **`ay`** property of the CSSSkewY interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
5927
5927
  *
5928
5928
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay)
5929
5929
  */
@@ -7375,7 +7375,7 @@ interface CSSStyleRule extends CSSGroupingRule {
7375
7375
  */
7376
7376
  readonly style: CSSStyleProperties;
7377
7377
  /**
7378
- * The **`styleMap`** read-only property of the which provides access to the rule's property-value pairs.
7378
+ * The **`styleMap`** read-only property of the CSSStyleRule interface returns a StylePropertyMap object which provides access to the rule's property-value pairs.
7379
7379
  *
7380
7380
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap)
7381
7381
  */
@@ -7509,7 +7509,7 @@ interface CSSTransformComponent {
7509
7509
  */
7510
7510
  is2D: boolean;
7511
7511
  /**
7512
- * The **`toMatrix()`** method of the object.
7512
+ * The **`toMatrix()`** method of the CSSTransformComponent interface returns a DOMMatrix object.
7513
7513
  *
7514
7514
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/toMatrix)
7515
7515
  */
@@ -7529,19 +7529,19 @@ declare var CSSTransformComponent: {
7529
7529
  */
7530
7530
  interface CSSTransformValue extends CSSStyleValue {
7531
7531
  /**
7532
- * 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.
7532
+ * The read-only **`is2D`** property of the CSSTransformValue interface returns whether the transform is 2D or 3D.
7533
7533
  *
7534
7534
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D)
7535
7535
  */
7536
7536
  readonly is2D: boolean;
7537
7537
  /**
7538
- * The read-only **`length`** property of the the list.
7538
+ * The read-only **`length`** property of the CSSTransformValue interface returns the number of transform components in the list.
7539
7539
  *
7540
7540
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/length)
7541
7541
  */
7542
7542
  readonly length: number;
7543
7543
  /**
7544
- * The **`toMatrix()`** method of the ```js-nolint toMatrix() ``` None.
7544
+ * The **`toMatrix()`** method of the CSSTransformValue interface returns a DOMMatrix object.
7545
7545
  *
7546
7546
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/toMatrix)
7547
7547
  */
@@ -7562,7 +7562,7 @@ declare var CSSTransformValue: {
7562
7562
  */
7563
7563
  interface CSSTransition extends Animation {
7564
7564
  /**
7565
- * The **`transitionProperty`** property of the name** of the transition.
7565
+ * The **`transitionProperty`** property of the CSSTransition interface returns the **expanded transition property name** of the transition.
7566
7566
  *
7567
7567
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransition/transitionProperty)
7568
7568
  */
@@ -7585,19 +7585,19 @@ declare var CSSTransition: {
7585
7585
  */
7586
7586
  interface CSSTranslate extends CSSTransformComponent {
7587
7587
  /**
7588
- * The **`x`** property of the translating vector.
7588
+ * The **`x`** property of the CSSTranslate interface gets and sets the abscissa or x-axis of the translating vector.
7589
7589
  *
7590
7590
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x)
7591
7591
  */
7592
7592
  x: CSSNumericValue;
7593
7593
  /**
7594
- * The **`y`** property of the translating vector.
7594
+ * The **`y`** property of the CSSTranslate interface gets and sets the ordinate or y-axis of the translating vector.
7595
7595
  *
7596
7596
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/y)
7597
7597
  */
7598
7598
  y: CSSNumericValue;
7599
7599
  /**
7600
- * The **`z`** property of the vector.
7600
+ * The **`z`** property of the CSSTranslate interface representing the z-component of the translating vector.
7601
7601
  *
7602
7602
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/z)
7603
7603
  */
@@ -7622,7 +7622,7 @@ interface CSSUnitValue extends CSSNumericValue {
7622
7622
  */
7623
7623
  readonly unit: string;
7624
7624
  /**
7625
- * The **`CSSUnitValue.value`** property of the A double.
7625
+ * The **`CSSUnitValue.value`** property of the CSSUnitValue interface returns a double indicating the number of units.
7626
7626
  *
7627
7627
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/value)
7628
7628
  */
@@ -7641,7 +7641,7 @@ declare var CSSUnitValue: {
7641
7641
  */
7642
7642
  interface CSSUnparsedValue extends CSSStyleValue {
7643
7643
  /**
7644
- * The **`length`** read-only property of the An integer.
7644
+ * The **`length`** read-only property of the CSSUnparsedValue interface returns the number of items in the object.
7645
7645
  *
7646
7646
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length)
7647
7647
  */
@@ -7662,13 +7662,13 @@ declare var CSSUnparsedValue: {
7662
7662
  */
7663
7663
  interface CSSVariableReferenceValue {
7664
7664
  /**
7665
- * The **`fallback`** read-only property of the A CSSUnparsedValue.
7665
+ * The **`fallback`** read-only property of the CSSVariableReferenceValue interface returns the custom property fallback value of the CSSVariableReferenceValue.
7666
7666
  *
7667
7667
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback)
7668
7668
  */
7669
7669
  readonly fallback: CSSUnparsedValue | null;
7670
7670
  /**
7671
- * The **`variable`** property of the A string beginning with `--` (that is, a custom property name).
7671
+ * The **`variable`** property of the CSSVariableReferenceValue interface returns the custom property name of the CSSVariableReferenceValue.
7672
7672
  *
7673
7673
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/variable)
7674
7674
  */
@@ -7716,7 +7716,7 @@ interface Cache {
7716
7716
  */
7717
7717
  delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<boolean>;
7718
7718
  /**
7719
- * The **`keys()`** method of the Cache interface returns a representing the keys of the Cache.
7719
+ * The **`keys()`** method of the Cache interface returns a Promise that resolves to an array of Request objects representing the keys of the Cache.
7720
7720
  *
7721
7721
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/keys)
7722
7722
  */
@@ -7734,7 +7734,7 @@ interface Cache {
7734
7734
  */
7735
7735
  matchAll(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Response>>;
7736
7736
  /**
7737
- * 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.
7737
+ * The **`put()`** method of the Cache interface allows key/value pairs to be added to the current Cache object.
7738
7738
  *
7739
7739
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/put)
7740
7740
  */
@@ -7760,7 +7760,7 @@ interface CacheStorage {
7760
7760
  */
7761
7761
  delete(cacheName: string): Promise<boolean>;
7762
7762
  /**
7763
- * 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.
7763
+ * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a Cache object matches the `cacheName`.
7764
7764
  *
7765
7765
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/has)
7766
7766
  */
@@ -7778,7 +7778,7 @@ interface CacheStorage {
7778
7778
  */
7779
7779
  match(request: RequestInfo | URL, options?: MultiCacheQueryOptions): Promise<Response | undefined>;
7780
7780
  /**
7781
- * The **`open()`** method of the the Cache object matching the `cacheName`.
7781
+ * The **`open()`** method of the CacheStorage interface returns a Promise that resolves to the Cache object matching the `cacheName`.
7782
7782
  *
7783
7783
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open)
7784
7784
  */
@@ -7985,7 +7985,7 @@ interface CanvasRect {
7985
7985
  */
7986
7986
  interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
7987
7987
  /**
7988
- * 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.
7988
+ * 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.
7989
7989
  *
7990
7990
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
7991
7991
  */
@@ -8263,7 +8263,7 @@ declare var Clipboard: {
8263
8263
  */
8264
8264
  interface ClipboardEvent extends Event {
8265
8265
  /**
8266
- * 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.
8266
+ * The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to:
8267
8267
  *
8268
8268
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardEvent/clipboardData)
8269
8269
  */
@@ -8364,7 +8364,7 @@ declare var Comment: {
8364
8364
  */
8365
8365
  interface CompositionEvent extends UIEvent {
8366
8366
  /**
8367
- * 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.
8367
+ * 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.
8368
8368
  *
8369
8369
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/data)
8370
8370
  */
@@ -8648,7 +8648,7 @@ interface CredentialsContainer {
8648
8648
  */
8649
8649
  preventSilentAccess(): Promise<void>;
8650
8650
  /**
8651
- * The **`store()`** method of the ```js-nolint store(credentials) ``` - `credentials` - : A valid Credential instance.
8651
+ * The **`store()`** method of the CredentialsContainer stores a set of credentials for the user inside a Credential instance, returning this in a Promise.
8652
8652
  *
8653
8653
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/store)
8654
8654
  */
@@ -8667,7 +8667,7 @@ declare var CredentialsContainer: {
8667
8667
  */
8668
8668
  interface Crypto {
8669
8669
  /**
8670
- * The **`Crypto.subtle`** read-only property returns a cryptographic operations.
8670
+ * The **`Crypto.subtle`** read-only property returns a SubtleCrypto which can then be used to perform low-level cryptographic operations.
8671
8671
  * Available only in secure contexts.
8672
8672
  *
8673
8673
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle)
@@ -8744,25 +8744,25 @@ interface CustomElementRegistry {
8744
8744
  */
8745
8745
  define(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void;
8746
8746
  /**
8747
- * The **`get()`** method of the previously-defined custom element.
8747
+ * The **`get()`** method of the CustomElementRegistry interface returns the constructor for a previously-defined custom element.
8748
8748
  *
8749
8749
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/get)
8750
8750
  */
8751
8751
  get(name: string): CustomElementConstructor | undefined;
8752
8752
  /**
8753
- * The **`getName()`** method of the previously-defined custom element.
8753
+ * The **`getName()`** method of the CustomElementRegistry interface returns the name for a previously-defined custom element.
8754
8754
  *
8755
8755
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
8756
8756
  */
8757
8757
  getName(constructor: CustomElementConstructor): string | null;
8758
8758
  /**
8759
- * The **`upgrade()`** method of the elements in a Node subtree, even before they are connected to the main document.
8759
+ * 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.
8760
8760
  *
8761
8761
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/upgrade)
8762
8762
  */
8763
8763
  upgrade(root: Node): void;
8764
8764
  /**
8765
- * The **`whenDefined()`** method of the resolves when the named element is defined.
8765
+ * The **`whenDefined()`** method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.
8766
8766
  *
8767
8767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/whenDefined)
8768
8768
  */
@@ -8828,13 +8828,13 @@ interface DOMException extends Error {
8828
8828
  */
8829
8829
  readonly code: number;
8830
8830
  /**
8831
- * The **`message`** read-only property of the a message or description associated with the given error name.
8831
+ * The **`message`** read-only property of the DOMException interface returns a string representing a message or description associated with the given error name.
8832
8832
  *
8833
8833
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message)
8834
8834
  */
8835
8835
  readonly message: string;
8836
8836
  /**
8837
- * The **`name`** read-only property of the one of the strings associated with an error name.
8837
+ * The **`name`** read-only property of the DOMException interface returns a string that contains one of the strings associated with an error name.
8838
8838
  *
8839
8839
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name)
8840
8840
  */
@@ -8909,7 +8909,7 @@ interface DOMImplementation {
8909
8909
  */
8910
8910
  createDocument(namespace: string | null, qualifiedName: string | null, doctype?: DocumentType | null): XMLDocument;
8911
8911
  /**
8912
- * 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`.
8912
+ * 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().
8913
8913
  *
8914
8914
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
8915
8915
  */
@@ -9177,7 +9177,7 @@ interface DOMMatrixReadOnly {
9177
9177
  */
9178
9178
  rotateFromVector(x?: number, y?: number): DOMMatrix;
9179
9179
  /**
9180
- * The **`scale()`** method of the original matrix with a scale transform applied.
9180
+ * The **`scale()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a scale transform applied.
9181
9181
  *
9182
9182
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)
9183
9183
  */
@@ -9221,7 +9221,7 @@ interface DOMMatrixReadOnly {
9221
9221
  */
9222
9222
  toJSON(): any;
9223
9223
  /**
9224
- * The **`transformPoint`** method of the You can also create a new `DOMPoint` by applying a matrix to a point with the DOMPointReadOnly.matrixTransform() method.
9224
+ * The **`transformPoint`** method of the DOMMatrixReadOnly interface creates a new DOMPoint object, transforming a specified point by the matrix.
9225
9225
  *
9226
9226
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint)
9227
9227
  */
@@ -9345,7 +9345,7 @@ interface DOMPointReadOnly {
9345
9345
  */
9346
9346
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
9347
9347
  /**
9348
- * The DOMPointReadOnly method `toJSON()` returns an object giving the ```js-nolint toJSON() ``` None.
9348
+ * The DOMPointReadOnly method `toJSON()` returns an object giving the JSON form of the point object.
9349
9349
  *
9350
9350
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)
9351
9351
  */
@@ -9400,7 +9400,7 @@ interface DOMQuad {
9400
9400
  */
9401
9401
  getBounds(): DOMRect;
9402
9402
  /**
9403
- * The DOMQuad method `toJSON()` returns a ```js-nolint toJSON() ``` None.
9403
+ * The DOMQuad method `toJSON()` returns a JSON representation of the `DOMQuad` object.
9404
9404
  *
9405
9405
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON)
9406
9406
  */
@@ -9450,7 +9450,7 @@ declare var DOMRect: {
9450
9450
  prototype: DOMRect;
9451
9451
  new(x?: number, y?: number, width?: number, height?: number): DOMRect;
9452
9452
  /**
9453
- * The **`fromRect()`** static method of the object with a given location and dimensions.
9453
+ * The **`fromRect()`** static method of the DOMRect object creates a new `DOMRect` object with a given location and dimensions.
9454
9454
  *
9455
9455
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)
9456
9456
  */
@@ -9552,7 +9552,7 @@ declare var DOMRectReadOnly: {
9552
9552
  prototype: DOMRectReadOnly;
9553
9553
  new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly;
9554
9554
  /**
9555
- * The **`fromRect()`** static method of the object with a given location and dimensions.
9555
+ * The **`fromRect()`** static method of the DOMRectReadOnly object creates a new `DOMRectReadOnly` object with a given location and dimensions.
9556
9556
  *
9557
9557
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)
9558
9558
  */
@@ -9700,7 +9700,7 @@ interface DataTransfer {
9700
9700
  */
9701
9701
  readonly files: FileList;
9702
9702
  /**
9703
- * 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.
9703
+ * The read-only `items` property of the DataTransfer interface is a DataTransferItemList of the DataTransferItem in a drag operation.
9704
9704
  *
9705
9705
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/items)
9706
9706
  */
@@ -9792,13 +9792,13 @@ declare var DataTransferItem: {
9792
9792
  */
9793
9793
  interface DataTransferItemList {
9794
9794
  /**
9795
- * The read-only **`length`** property of the the drag item list.
9795
+ * The read-only **`length`** property of the DataTransferItemList interface returns the number of items currently in the drag item list.
9796
9796
  *
9797
9797
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/length)
9798
9798
  */
9799
9799
  readonly length: number;
9800
9800
  /**
9801
- * The **`DataTransferItemList.add()`** method creates a new list.
9801
+ * The **`DataTransferItemList.add()`** method creates a new DataTransferItem using the specified data and adds it to the drag data list.
9802
9802
  *
9803
9803
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/add)
9804
9804
  */
@@ -9811,7 +9811,7 @@ interface DataTransferItemList {
9811
9811
  */
9812
9812
  clear(): void;
9813
9813
  /**
9814
- * 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.
9814
+ * The **`DataTransferItemList.remove()`** method removes the DataTransferItem at the specified index from the list.
9815
9815
  *
9816
9816
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/remove)
9817
9817
  */
@@ -10025,7 +10025,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10025
10025
  */
10026
10026
  readonly all: HTMLAllCollection;
10027
10027
  /**
10028
- * The **`anchors`** read-only property of the An HTMLCollection.
10028
+ * The **`anchors`** read-only property of the Document interface returns a list of all of the anchors in the document.
10029
10029
  * @deprecated
10030
10030
  *
10031
10031
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/anchors)
@@ -10046,7 +10046,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10046
10046
  */
10047
10047
  bgColor: string;
10048
10048
  /**
10049
- * The **`Document.body`** property represents the `null` if no such element exists.
10049
+ * The **`Document.body`** property represents the body or frameset node of the current document, or `null` if no such element exists.
10050
10050
  *
10051
10051
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/body)
10052
10052
  */
@@ -10088,7 +10088,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10088
10088
  */
10089
10089
  readonly currentScript: HTMLOrSVGScriptElement | null;
10090
10090
  /**
10091
- * In browsers, **`document.defaultView`** returns the This property is read-only.
10091
+ * In browsers, **`document.defaultView`** returns the Window object associated with Browsing_context, or `null` if none is available.
10092
10092
  *
10093
10093
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/defaultView)
10094
10094
  */
@@ -10112,13 +10112,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10112
10112
  */
10113
10113
  readonly doctype: DocumentType | null;
10114
10114
  /**
10115
- * The **`documentElement`** read-only property of the Document interface returns the example, the html element for HTML documents).
10115
+ * 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).
10116
10116
  *
10117
10117
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentElement)
10118
10118
  */
10119
10119
  readonly documentElement: HTMLElement;
10120
10120
  /**
10121
- * The **`documentURI`** read-only property of the A string.
10121
+ * The **`documentURI`** read-only property of the Document interface returns the document location as a string.
10122
10122
  *
10123
10123
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentURI)
10124
10124
  */
@@ -10131,7 +10131,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10131
10131
  */
10132
10132
  domain: string;
10133
10133
  /**
10134
- * The **`embeds`** read-only property of the An HTMLCollection.
10134
+ * The **`embeds`** read-only property of the Document interface returns a list of the embedded embed elements within the current document.
10135
10135
  *
10136
10136
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/embeds)
10137
10137
  */
@@ -10187,7 +10187,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10187
10187
  */
10188
10188
  readonly images: HTMLCollectionOf<HTMLImageElement>;
10189
10189
  /**
10190
- * The **`Document.implementation`** property returns a A DOMImplementation object.
10190
+ * The **`Document.implementation`** property returns a DOMImplementation object associated with the current document.
10191
10191
  *
10192
10192
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/implementation)
10193
10193
  */
@@ -10218,7 +10218,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10218
10218
  */
10219
10219
  readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
10220
10220
  /**
10221
- * The **`Document.location`** read-only property returns a and provides methods for changing that URL and loading another URL.
10221
+ * 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.
10222
10222
  *
10223
10223
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)
10224
10224
  */
@@ -10238,13 +10238,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10238
10238
  onvisibilitychange: ((this: Document, ev: Event) => any) | null;
10239
10239
  readonly ownerDocument: null;
10240
10240
  /**
10241
- * The read-only **`pictureInPictureEnabled`** property of the available.
10241
+ * The read-only **`pictureInPictureEnabled`** property of the Document interface indicates whether or not picture-in-picture mode is available.
10242
10242
  *
10243
10243
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pictureInPictureEnabled)
10244
10244
  */
10245
10245
  readonly pictureInPictureEnabled: boolean;
10246
10246
  /**
10247
- * The **`plugins`** read-only property of the containing one or more HTMLEmbedElements representing the An HTMLCollection.
10247
+ * 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.
10248
10248
  *
10249
10249
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/plugins)
10250
10250
  */
@@ -10262,7 +10262,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10262
10262
  */
10263
10263
  readonly referrer: string;
10264
10264
  /**
10265
- * **`Document.rootElement`** returns the Element that is the root element of the document if it is an documents.
10265
+ * **`Document.rootElement`** returns the Element that is the root element of the document if it is an svg element, otherwise `null`.
10266
10266
  * @deprecated
10267
10267
  *
10268
10268
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)
@@ -10275,7 +10275,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10275
10275
  */
10276
10276
  readonly scripts: HTMLCollectionOf<HTMLScriptElement>;
10277
10277
  /**
10278
- * The **`scrollingElement`** read-only property of the scrolls the document.
10278
+ * The **`scrollingElement`** read-only property of the Document interface returns a reference to the Element that scrolls the document.
10279
10279
  *
10280
10280
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollingElement)
10281
10281
  */
@@ -10472,7 +10472,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10472
10472
  */
10473
10473
  createProcessingInstruction(target: string, data: string): ProcessingInstruction;
10474
10474
  /**
10475
- * The **`Document.createRange()`** method returns a new ```js-nolint createRange() ``` None.
10475
+ * The **`Document.createRange()`** method returns a new Range object.
10476
10476
  *
10477
10477
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createRange)
10478
10478
  */
@@ -10516,7 +10516,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10516
10516
  exitPointerLock(): void;
10517
10517
  getElementById(elementId: string): HTMLElement | null;
10518
10518
  /**
10519
- * The **`getElementsByClassName`** method of of all child elements which have all of the given class name(s).
10519
+ * The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
10520
10520
  *
10521
10521
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByClassName)
10522
10522
  */
@@ -10528,7 +10528,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10528
10528
  */
10529
10529
  getElementsByName(elementName: string): NodeListOf<HTMLElement>;
10530
10530
  /**
10531
- * The **`getElementsByTagName`** method of The complete document is searched, including the root node.
10531
+ * The **`getElementsByTagName`** method of Document interface returns an HTMLCollection of elements with the given tag name.
10532
10532
  *
10533
10533
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByTagName)
10534
10534
  */
@@ -10566,13 +10566,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10566
10566
  */
10567
10567
  hasStorageAccess(): Promise<boolean>;
10568
10568
  /**
10569
- * The Document object's **`importNode()`** method creates a copy of a inserted into the current document later.
10569
+ * 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.
10570
10570
  *
10571
10571
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
10572
10572
  */
10573
10573
  importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
10574
10574
  /**
10575
- * The **`Document.open()`** method opens a document for This does come with some side effects.
10575
+ * The **`Document.open()`** method opens a document for Document.write.
10576
10576
  *
10577
10577
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/open)
10578
10578
  */
@@ -10954,7 +10954,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
10954
10954
  */
10955
10955
  readonly classList: DOMTokenList;
10956
10956
  /**
10957
- * The **`className`** property of the of the specified element.
10957
+ * The **`className`** property of the Element interface gets and sets the value of the `class` attribute of the specified element.
10958
10958
  *
10959
10959
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className)
10960
10960
  */
@@ -11106,7 +11106,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11106
11106
  */
11107
11107
  computedStyleMap(): StylePropertyMapReadOnly;
11108
11108
  /**
11109
- * The **`getAttribute()`** method of the element.
11109
+ * The **`getAttribute()`** method of the Element interface returns the value of a specified attribute on the element.
11110
11110
  *
11111
11111
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute)
11112
11112
  */
@@ -11118,7 +11118,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11118
11118
  */
11119
11119
  getAttributeNS(namespace: string | null, localName: string): string | null;
11120
11120
  /**
11121
- * The **`getAttributeNames()`** method of the array.
11121
+ * The **`getAttributeNames()`** method of the Element interface returns the attribute names of the element as an Array of strings.
11122
11122
  *
11123
11123
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames)
11124
11124
  */
@@ -11136,7 +11136,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11136
11136
  */
11137
11137
  getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
11138
11138
  /**
11139
- * The **`Element.getBoundingClientRect()`** method returns a position relative to the viewport.
11139
+ * The **`Element.getBoundingClientRect()`** method returns a DOMRect object providing information about the size of an element and its position relative to the viewport.
11140
11140
  *
11141
11141
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect)
11142
11142
  */
@@ -11148,13 +11148,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11148
11148
  */
11149
11149
  getClientRects(): DOMRectList;
11150
11150
  /**
11151
- * The Element method **`getElementsByClassName()`** returns a live specified class name or names.
11151
+ * The Element method **`getElementsByClassName()`** returns a live HTMLCollection which contains every descendant element which has the specified class name or names.
11152
11152
  *
11153
11153
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName)
11154
11154
  */
11155
11155
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
11156
11156
  /**
11157
- * The **`Element.getElementsByTagName()`** method returns a live All descendants of the specified element are searched, but not the element itself.
11157
+ * The **`Element.getElementsByTagName()`** method returns a live HTMLCollection of elements with the given tag name.
11158
11158
  *
11159
11159
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName)
11160
11160
  */
@@ -11198,19 +11198,19 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11198
11198
  */
11199
11199
  hasAttributes(): boolean;
11200
11200
  /**
11201
- * The **`hasPointerCapture()`** method of the pointer capture for the pointer identified by the given pointer ID.
11201
+ * 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.
11202
11202
  *
11203
11203
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture)
11204
11204
  */
11205
11205
  hasPointerCapture(pointerId: number): boolean;
11206
11206
  /**
11207
- * The **`insertAdjacentElement()`** method of the relative to the element it is invoked upon.
11207
+ * The **`insertAdjacentElement()`** method of the Element interface inserts a given element node at a given position relative to the element it is invoked upon.
11208
11208
  *
11209
11209
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement)
11210
11210
  */
11211
11211
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
11212
11212
  /**
11213
- * The **`insertAdjacentHTML()`** method of the the resulting nodes into the DOM tree at a specified position.
11213
+ * 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.
11214
11214
  *
11215
11215
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML)
11216
11216
  */
@@ -11228,7 +11228,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11228
11228
  */
11229
11229
  matches(selectors: string): boolean;
11230
11230
  /**
11231
- * The **`releasePointerCapture()`** method of the previously set for a specific (PointerEvent) _pointer_.
11231
+ * The **`releasePointerCapture()`** method of the Element interface releases (stops) _pointer capture_ that was previously set for a specific (PointerEvent) _pointer_.
11232
11232
  *
11233
11233
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture)
11234
11234
  */
@@ -11240,7 +11240,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11240
11240
  */
11241
11241
  removeAttribute(qualifiedName: string): void;
11242
11242
  /**
11243
- * 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.
11243
+ * The **`removeAttributeNS()`** method of the Element interface removes the specified attribute with the specified namespace from an element.
11244
11244
  *
11245
11245
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS)
11246
11246
  */
@@ -11321,13 +11321,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11321
11321
  */
11322
11322
  setHTMLUnsafe(html: string): void;
11323
11323
  /**
11324
- * The **`setPointerCapture()`** method of the _capture target_ of future pointer events.
11324
+ * The **`setPointerCapture()`** method of the Element interface is used to designate a specific element as the _capture target_ of future pointer events.
11325
11325
  *
11326
11326
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture)
11327
11327
  */
11328
11328
  setPointerCapture(pointerId: number): void;
11329
11329
  /**
11330
- * The **`toggleAttribute()`** method of the present and adding it if it is not present) on the given element.
11330
+ * 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.
11331
11331
  *
11332
11332
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
11333
11333
  */
@@ -11604,7 +11604,7 @@ interface Event {
11604
11604
  */
11605
11605
  readonly cancelable: boolean;
11606
11606
  /**
11607
- * The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.
11607
+ * 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.
11608
11608
  *
11609
11609
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)
11610
11610
  */
@@ -11622,13 +11622,13 @@ interface Event {
11622
11622
  */
11623
11623
  readonly defaultPrevented: boolean;
11624
11624
  /**
11625
- * The **`eventPhase`** read-only property of the being evaluated.
11625
+ * The **`eventPhase`** read-only property of the Event interface indicates which phase of the event flow is currently being evaluated.
11626
11626
  *
11627
11627
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)
11628
11628
  */
11629
11629
  readonly eventPhase: number;
11630
11630
  /**
11631
- * 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.
11631
+ * 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().
11632
11632
  *
11633
11633
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
11634
11634
  */
@@ -11648,7 +11648,7 @@ interface Event {
11648
11648
  */
11649
11649
  readonly srcElement: EventTarget | null;
11650
11650
  /**
11651
- * The read-only **`target`** property of the dispatched.
11651
+ * The read-only **`target`** property of the Event interface is a reference to the object onto which the event was dispatched.
11652
11652
  *
11653
11653
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)
11654
11654
  */
@@ -11685,7 +11685,7 @@ interface Event {
11685
11685
  */
11686
11686
  preventDefault(): void;
11687
11687
  /**
11688
- * 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.
11688
+ * The **`stopImmediatePropagation()`** method of the Event interface prevents other listeners of the same event from being called.
11689
11689
  *
11690
11690
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)
11691
11691
  */
@@ -11752,25 +11752,25 @@ interface EventSource extends EventTarget {
11752
11752
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */
11753
11753
  onopen: ((this: EventSource, ev: Event) => any) | null;
11754
11754
  /**
11755
- * The **`readyState`** read-only property of the connection.
11755
+ * The **`readyState`** read-only property of the EventSource interface returns a number representing the state of the connection.
11756
11756
  *
11757
11757
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState)
11758
11758
  */
11759
11759
  readonly readyState: number;
11760
11760
  /**
11761
- * The **`url`** read-only property of the URL of the source.
11761
+ * The **`url`** read-only property of the EventSource interface returns a string representing the URL of the source.
11762
11762
  *
11763
11763
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url)
11764
11764
  */
11765
11765
  readonly url: string;
11766
11766
  /**
11767
- * The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set.
11767
+ * The **`withCredentials`** read-only property of the EventSource interface returns a boolean value indicating whether the `EventSource` object was instantiated with CORS credentials set.
11768
11768
  *
11769
11769
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials)
11770
11770
  */
11771
11771
  readonly withCredentials: boolean;
11772
11772
  /**
11773
- * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the ```js-nolint close() ``` None.
11773
+ * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the EventSource.readyState attribute to `2` (closed).
11774
11774
  *
11775
11775
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close)
11776
11776
  */
@@ -11961,7 +11961,7 @@ interface FileReader extends EventTarget {
11961
11961
  */
11962
11962
  readAsBinaryString(blob: Blob): void;
11963
11963
  /**
11964
- * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified file's data as a base64 encoded string.
11964
+ * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified Blob or File.
11965
11965
  *
11966
11966
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL)
11967
11967
  */
@@ -11996,13 +11996,13 @@ declare var FileReader: {
11996
11996
  */
11997
11997
  interface FileSystem {
11998
11998
  /**
11999
- * The read-only **`name`** property of the string is unique among all file systems currently exposed by the File and Directory Entries API.
11999
+ * The read-only **`name`** property of the FileSystem interface indicates the file system's name.
12000
12000
  *
12001
12001
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/name)
12002
12002
  */
12003
12003
  readonly name: string;
12004
12004
  /**
12005
- * 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.
12005
+ * 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.
12006
12006
  *
12007
12007
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/root)
12008
12008
  */
@@ -12021,19 +12021,19 @@ declare var FileSystem: {
12021
12021
  */
12022
12022
  interface FileSystemDirectoryEntry extends FileSystemEntry {
12023
12023
  /**
12024
- * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a the directory.
12024
+ * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a FileSystemDirectoryReader object which can be used to read the entries in the directory.
12025
12025
  *
12026
12026
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/createReader)
12027
12027
  */
12028
12028
  createReader(): FileSystemDirectoryReader;
12029
12029
  /**
12030
- * The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a somewhere within the directory subtree rooted at the directory on which it's called.
12030
+ * 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.
12031
12031
  *
12032
12032
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getDirectory)
12033
12033
  */
12034
12034
  getDirectory(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
12035
12035
  /**
12036
- * The FileSystemDirectoryEntry interface's method **`getFile()`** returns a within the directory subtree rooted at the directory on which it's called.
12036
+ * 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.
12037
12037
  *
12038
12038
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getFile)
12039
12039
  */
@@ -12054,25 +12054,25 @@ declare var FileSystemDirectoryEntry: {
12054
12054
  interface FileSystemDirectoryHandle extends FileSystemHandle {
12055
12055
  readonly kind: "directory";
12056
12056
  /**
12057
- * The **`getDirectoryHandle()`** method of the within the directory handle on which the method is called.
12057
+ * 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.
12058
12058
  *
12059
12059
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getDirectoryHandle)
12060
12060
  */
12061
12061
  getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
12062
12062
  /**
12063
- * The **`getFileHandle()`** method of the directory the method is called.
12063
+ * The **`getFileHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.
12064
12064
  *
12065
12065
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getFileHandle)
12066
12066
  */
12067
12067
  getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
12068
12068
  /**
12069
- * The **`removeEntry()`** method of the directory handle contains a file or directory called the name specified.
12069
+ * 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.
12070
12070
  *
12071
12071
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/removeEntry)
12072
12072
  */
12073
12073
  removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
12074
12074
  /**
12075
- * 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.
12075
+ * 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.
12076
12076
  *
12077
12077
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/resolve)
12078
12078
  */
@@ -12110,7 +12110,7 @@ declare var FileSystemDirectoryReader: {
12110
12110
  */
12111
12111
  interface FileSystemEntry {
12112
12112
  /**
12113
- * The read-only **`filesystem`** property of the FileSystemEntry interface contains a resides.
12113
+ * The read-only **`filesystem`** property of the FileSystemEntry interface contains a FileSystem object that represents the file system on which the entry resides.
12114
12114
  *
12115
12115
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/filesystem)
12116
12116
  */
@@ -12140,7 +12140,7 @@ interface FileSystemEntry {
12140
12140
  */
12141
12141
  readonly name: string;
12142
12142
  /**
12143
- * 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.
12143
+ * The FileSystemEntry interface's method **`getParent()`** obtains a FileSystemDirectoryEntry.
12144
12144
  *
12145
12145
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/getParent)
12146
12146
  */
@@ -12159,7 +12159,7 @@ declare var FileSystemEntry: {
12159
12159
  */
12160
12160
  interface FileSystemFileEntry extends FileSystemEntry {
12161
12161
  /**
12162
- * The FileSystemFileEntry interface's method **`file()`** returns a the directory entry.
12162
+ * 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.
12163
12163
  *
12164
12164
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileEntry/file)
12165
12165
  */
@@ -12186,7 +12186,7 @@ interface FileSystemFileHandle extends FileSystemHandle {
12186
12186
  */
12187
12187
  createWritable(options?: FileSystemCreateWritableOptions): Promise<FileSystemWritableFileStream>;
12188
12188
  /**
12189
- * 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.
12189
+ * 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.
12190
12190
  *
12191
12191
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile)
12192
12192
  */
@@ -12206,19 +12206,19 @@ declare var FileSystemFileHandle: {
12206
12206
  */
12207
12207
  interface FileSystemHandle {
12208
12208
  /**
12209
- * The **`kind`** read-only property of the `'file'` if the associated entry is a file or `'directory'`.
12209
+ * The **`kind`** read-only property of the FileSystemHandle interface returns the type of entry.
12210
12210
  *
12211
12211
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind)
12212
12212
  */
12213
12213
  readonly kind: FileSystemHandleKind;
12214
12214
  /**
12215
- * The **`name`** read-only property of the handle.
12215
+ * The **`name`** read-only property of the FileSystemHandle interface returns the name of the entry represented by handle.
12216
12216
  *
12217
12217
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/name)
12218
12218
  */
12219
12219
  readonly name: string;
12220
12220
  /**
12221
- * The **`isSameEntry()`** method of the ```js-nolint isSameEntry(fileSystemHandle) ``` - FileSystemHandle - : The `FileSystemHandle` to match against the handle on which the method is invoked.
12221
+ * The **`isSameEntry()`** method of the FileSystemHandle interface compares two FileSystemHandle to see if the associated entries (either a file or directory) match.
12222
12222
  *
12223
12223
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/isSameEntry)
12224
12224
  */
@@ -12269,7 +12269,7 @@ declare var FileSystemWritableFileStream: {
12269
12269
  */
12270
12270
  interface FocusEvent extends UIEvent {
12271
12271
  /**
12272
- * 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`.
12272
+ * The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event:
12273
12273
  *
12274
12274
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent/relatedTarget)
12275
12275
  */
@@ -12433,7 +12433,7 @@ declare var FontFaceSet: {
12433
12433
  */
12434
12434
  interface FontFaceSetLoadEvent extends Event {
12435
12435
  /**
12436
- * The **`fontfaces`** read-only property of the An array of FontFace instance.
12436
+ * The **`fontfaces`** read-only property of the FontFaceSetLoadEvent interface returns an array of FontFace instances, each of which represents a single usable font.
12437
12437
  *
12438
12438
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces)
12439
12439
  */
@@ -12544,7 +12544,7 @@ declare var FragmentDirective: {
12544
12544
  */
12545
12545
  interface GPUError {
12546
12546
  /**
12547
- * The **`message`** read-only property of the A string.
12547
+ * The **`message`** read-only property of the GPUError interface provides a human-readable message that explains why the error occurred.
12548
12548
  *
12549
12549
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message)
12550
12550
  */
@@ -12589,7 +12589,7 @@ interface Gamepad {
12589
12589
  */
12590
12590
  readonly buttons: ReadonlyArray<GamepadButton>;
12591
12591
  /**
12592
- * The **`Gamepad.connected`** property of the still connected to the system.
12592
+ * The **`Gamepad.connected`** property of the Gamepad interface returns a boolean indicating whether the gamepad is still connected to the system.
12593
12593
  *
12594
12594
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/connected)
12595
12595
  */
@@ -12607,13 +12607,13 @@ interface Gamepad {
12607
12607
  */
12608
12608
  readonly index: number;
12609
12609
  /**
12610
- * The **`Gamepad.mapping`** property of the remapped the controls on the device to a known layout.
12610
+ * 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.
12611
12611
  *
12612
12612
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/mapping)
12613
12613
  */
12614
12614
  readonly mapping: GamepadMappingType;
12615
12615
  /**
12616
- * The **`Gamepad.timestamp`** property of the representing the last time the data for this gamepad was updated.
12616
+ * The **`Gamepad.timestamp`** property of the Gamepad interface returns a DOMHighResTimeStamp representing the last time the data for this gamepad was updated.
12617
12617
  *
12618
12618
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp)
12619
12619
  */
@@ -12638,19 +12638,19 @@ declare var Gamepad: {
12638
12638
  */
12639
12639
  interface GamepadButton {
12640
12640
  /**
12641
- * The **`GamepadButton.pressed`** property of the the button is currently pressed (`true`) or unpressed (`false`).
12641
+ * The **`GamepadButton.pressed`** property of the GamepadButton interface returns a `boolean` indicating whether the button is currently pressed (`true`) or unpressed (`false`).
12642
12642
  *
12643
12643
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/pressed)
12644
12644
  */
12645
12645
  readonly pressed: boolean;
12646
12646
  /**
12647
- * The **`touched`** property of the a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
12647
+ * 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`).
12648
12648
  *
12649
12649
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/touched)
12650
12650
  */
12651
12651
  readonly touched: boolean;
12652
12652
  /**
12653
- * The **`GamepadButton.value`** property of the current state of analog buttons on many modern gamepads, such as the triggers.
12653
+ * 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.
12654
12654
  *
12655
12655
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/value)
12656
12656
  */
@@ -12669,7 +12669,7 @@ declare var GamepadButton: {
12669
12669
  */
12670
12670
  interface GamepadEvent extends Event {
12671
12671
  /**
12672
- * The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired A Gamepad object.
12672
+ * 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.
12673
12673
  *
12674
12674
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent/gamepad)
12675
12675
  */
@@ -13271,7 +13271,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
13271
13271
  */
13272
13272
  ping: string;
13273
13273
  /**
13274
- * 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.
13274
+ * The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the a element defining which referrer is sent when fetching the resource.
13275
13275
  *
13276
13276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy)
13277
13277
  */
@@ -13354,7 +13354,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
13354
13354
  */
13355
13355
  ping: string;
13356
13356
  /**
13357
- * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the resource.
13357
+ * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the area element defining which referrer is sent when fetching the resource.
13358
13358
  *
13359
13359
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy)
13360
13360
  */
@@ -13540,7 +13540,7 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13540
13540
  */
13541
13541
  formTarget: string;
13542
13542
  /**
13543
- * The **`HTMLButtonElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<button>` element.
13543
+ * The **`HTMLButtonElement.labels`** read-only property returns a NodeList of the label elements associated with the button element.
13544
13544
  *
13545
13545
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels)
13546
13546
  */
@@ -13797,7 +13797,7 @@ interface HTMLDetailsElement extends HTMLElement {
13797
13797
  */
13798
13798
  name: string;
13799
13799
  /**
13800
- * 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.
13800
+ * 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.
13801
13801
  *
13802
13802
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)
13803
13803
  */
@@ -13820,13 +13820,13 @@ declare var HTMLDetailsElement: {
13820
13820
  */
13821
13821
  interface HTMLDialogElement extends HTMLElement {
13822
13822
  /**
13823
- * 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.
13823
+ * The **`closedBy`** property of the HTMLDialogElement interface indicates the types of user actions that can be used to close the associated dialog element.
13824
13824
  *
13825
13825
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/closedBy)
13826
13826
  */
13827
13827
  closedBy: string;
13828
13828
  /**
13829
- * The **`open`** property of the `open` HTML attribute, indicating whether the dialog is available for interaction.
13829
+ * The **`open`** property of the HTMLDialogElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the dialog is available for interaction.
13830
13830
  *
13831
13831
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/open)
13832
13832
  */
@@ -13856,7 +13856,7 @@ interface HTMLDialogElement extends HTMLElement {
13856
13856
  */
13857
13857
  show(): void;
13858
13858
  /**
13859
- * The **`showModal()`** method of the of any other dialogs that might be present.
13859
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present.
13860
13860
  *
13861
13861
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
13862
13862
  */
@@ -14313,7 +14313,7 @@ interface HTMLFormElement extends HTMLElement {
14313
14313
  */
14314
14314
  autocomplete: AutoFillBase;
14315
14315
  /**
14316
- * The HTMLFormElement property **`elements`** returns an the form element.
14316
+ * The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
14317
14317
  *
14318
14318
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
14319
14319
  */
@@ -14337,7 +14337,7 @@ interface HTMLFormElement extends HTMLElement {
14337
14337
  */
14338
14338
  readonly length: number;
14339
14339
  /**
14340
- * The **`HTMLFormElement.method`** property represents the Unless explicitly specified, the default method is 'get'.
14340
+ * The **`HTMLFormElement.method`** property represents the HTTP method used to submit the form.
14341
14341
  *
14342
14342
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/method)
14343
14343
  */
@@ -14397,7 +14397,7 @@ interface HTMLFormElement extends HTMLElement {
14397
14397
  */
14398
14398
  reset(): void;
14399
14399
  /**
14400
- * 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.
14400
+ * The **`HTMLFormElement.submit()`** method submits a given form.
14401
14401
  *
14402
14402
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit)
14403
14403
  */
@@ -14711,7 +14711,7 @@ interface HTMLIFrameElement extends HTMLElement {
14711
14711
  */
14712
14712
  name: string;
14713
14713
  /**
14714
- * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
14714
+ * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the iframe element defining which referrer is sent when fetching the resource.
14715
14715
  *
14716
14716
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy)
14717
14717
  */
@@ -14816,13 +14816,13 @@ interface HTMLImageElement extends HTMLElement {
14816
14816
  */
14817
14817
  fetchPriority: "high" | "low" | "auto";
14818
14818
  /**
14819
- * 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.
14819
+ * 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.
14820
14820
  *
14821
14821
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/height)
14822
14822
  */
14823
14823
  height: number;
14824
14824
  /**
14825
- * 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.
14825
+ * 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.
14826
14826
  * @deprecated
14827
14827
  *
14828
14828
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/hspace)
@@ -14857,7 +14857,7 @@ interface HTMLImageElement extends HTMLElement {
14857
14857
  */
14858
14858
  name: string;
14859
14859
  /**
14860
- * 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.
14860
+ * 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.
14861
14861
  *
14862
14862
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalHeight)
14863
14863
  */
@@ -14869,7 +14869,7 @@ interface HTMLImageElement extends HTMLElement {
14869
14869
  */
14870
14870
  readonly naturalWidth: number;
14871
14871
  /**
14872
- * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
14872
+ * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the img element defining which referrer is sent when fetching the resource.
14873
14873
  *
14874
14874
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/referrerPolicy)
14875
14875
  */
@@ -14893,38 +14893,38 @@ interface HTMLImageElement extends HTMLElement {
14893
14893
  */
14894
14894
  srcset: string;
14895
14895
  /**
14896
- * The **`useMap`** property on the providing the name of the client-side image map to apply to the image.
14896
+ * 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.
14897
14897
  *
14898
14898
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/useMap)
14899
14899
  */
14900
14900
  useMap: string;
14901
14901
  /**
14902
- * The _obsolete_ **`vspace`** property of the to leave empty on the top and bottom of the img element when laying out the page.
14902
+ * 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.
14903
14903
  * @deprecated
14904
14904
  *
14905
14905
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/vspace)
14906
14906
  */
14907
14907
  vspace: number;
14908
14908
  /**
14909
- * 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.
14909
+ * 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.
14910
14910
  *
14911
14911
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/width)
14912
14912
  */
14913
14913
  width: number;
14914
14914
  /**
14915
- * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the origin.
14915
+ * 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.
14916
14916
  *
14917
14917
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/x)
14918
14918
  */
14919
14919
  readonly x: number;
14920
14920
  /**
14921
- * The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the origin.
14921
+ * 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.
14922
14922
  *
14923
14923
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/y)
14924
14924
  */
14925
14925
  readonly y: number;
14926
14926
  /**
14927
- * The **`decode()`** method of the HTMLImageElement interface returns a it to the DOM.
14927
+ * 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.
14928
14928
  *
14929
14929
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decode)
14930
14930
  */
@@ -15057,7 +15057,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15057
15057
  */
15058
15058
  indeterminate: boolean;
15059
15059
  /**
15060
- * The **`HTMLInputElement.labels`** read-only property returns a type `hidden`, the property returns `null`.
15060
+ * The **`HTMLInputElement.labels`** read-only property returns a NodeList of the label elements associated with the input element, if the element is not hidden.
15061
15061
  *
15062
15062
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels)
15063
15063
  */
@@ -15452,7 +15452,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
15452
15452
  */
15453
15453
  media: string;
15454
15454
  /**
15455
- * The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the resource.
15455
+ * 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.
15456
15456
  *
15457
15457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy)
15458
15458
  */
@@ -15648,7 +15648,7 @@ interface HTMLMediaElement extends HTMLElement {
15648
15648
  */
15649
15649
  readonly ended: boolean;
15650
15650
  /**
15651
- * The **`HTMLMediaElement.error`** property is the there has not been an error.
15651
+ * The **`HTMLMediaElement.error`** property is the MediaError object for the most recent error, or `null` if there has not been an error.
15652
15652
  *
15653
15653
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/error)
15654
15654
  */
@@ -15750,13 +15750,13 @@ interface HTMLMediaElement extends HTMLElement {
15750
15750
  */
15751
15751
  src: string;
15752
15752
  /**
15753
- * The **`srcObject`** property of the the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
15753
+ * 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.
15754
15754
  *
15755
15755
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/srcObject)
15756
15756
  */
15757
15757
  srcObject: MediaProvider | null;
15758
15758
  /**
15759
- * 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.
15759
+ * 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.
15760
15760
  *
15761
15761
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/textTracks)
15762
15762
  */
@@ -15931,7 +15931,7 @@ interface HTMLMeterElement extends HTMLElement {
15931
15931
  */
15932
15932
  high: number;
15933
15933
  /**
15934
- * The **`HTMLMeterElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<meter>` element.
15934
+ * The **`HTMLMeterElement.labels`** read-only property returns a NodeList of the label elements associated with the meter element.
15935
15935
  *
15936
15936
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels)
15937
15937
  */
@@ -16079,7 +16079,7 @@ interface HTMLObjectElement extends HTMLElement {
16079
16079
  */
16080
16080
  readonly contentWindow: WindowProxy | null;
16081
16081
  /**
16082
- * The **`data`** property of the reflects the `data` HTML attribute, specifying the address of a resource's data.
16082
+ * The **`data`** property of the HTMLObjectElement interface returns a string that reflects the `data` HTML attribute, specifying the address of a resource's data.
16083
16083
  *
16084
16084
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
16085
16085
  */
@@ -16093,7 +16093,7 @@ interface HTMLObjectElement extends HTMLElement {
16093
16093
  */
16094
16094
  readonly form: HTMLFormElement | null;
16095
16095
  /**
16096
- * The **`height`** property of the reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
16096
+ * 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.
16097
16097
  *
16098
16098
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
16099
16099
  */
@@ -16101,7 +16101,7 @@ interface HTMLObjectElement extends HTMLElement {
16101
16101
  /** @deprecated */
16102
16102
  hspace: number;
16103
16103
  /**
16104
- * The **`name`** property of the reflects the `name` HTML attribute, specifying the name of the browsing context.
16104
+ * The **`name`** property of the HTMLObjectElement interface returns a string that reflects the `name` HTML attribute, specifying the name of the browsing context.
16105
16105
  *
16106
16106
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/name)
16107
16107
  */
@@ -16109,13 +16109,13 @@ interface HTMLObjectElement extends HTMLElement {
16109
16109
  /** @deprecated */
16110
16110
  standby: string;
16111
16111
  /**
16112
- * The **`type`** property of the reflects the `type` HTML attribute, specifying the MIME type of the resource.
16112
+ * The **`type`** property of the HTMLObjectElement interface returns a string that reflects the `type` HTML attribute, specifying the MIME type of the resource.
16113
16113
  *
16114
16114
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/type)
16115
16115
  */
16116
16116
  type: string;
16117
16117
  /**
16118
- * The **`useMap`** property of the reflects the `usemap` HTML attribute, specifying a A string.
16118
+ * The **`useMap`** property of the HTMLObjectElement interface returns a string that reflects the `usemap` HTML attribute, specifying a map element to use.
16119
16119
  * @deprecated
16120
16120
  *
16121
16121
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
@@ -16136,7 +16136,7 @@ interface HTMLObjectElement extends HTMLElement {
16136
16136
  /** @deprecated */
16137
16137
  vspace: number;
16138
16138
  /**
16139
- * The **`width`** property of the reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
16139
+ * 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.
16140
16140
  *
16141
16141
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/width)
16142
16142
  */
@@ -16166,7 +16166,7 @@ interface HTMLObjectElement extends HTMLElement {
16166
16166
  */
16167
16167
  reportValidity(): boolean;
16168
16168
  /**
16169
- * The **`setCustomValidity()`** method of the element.
16169
+ * The **`setCustomValidity()`** method of the HTMLObjectElement interface sets a custom validity message for the element.
16170
16170
  *
16171
16171
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/setCustomValidity)
16172
16172
  */
@@ -16353,7 +16353,7 @@ interface HTMLOutputElement extends HTMLElement {
16353
16353
  */
16354
16354
  readonly htmlFor: DOMTokenList;
16355
16355
  /**
16356
- * The **`HTMLOutputElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<output>` element.
16356
+ * The **`HTMLOutputElement.labels`** read-only property returns a NodeList of the label elements associated with the output element.
16357
16357
  *
16358
16358
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels)
16359
16359
  */
@@ -16512,7 +16512,7 @@ declare var HTMLPreElement: {
16512
16512
  */
16513
16513
  interface HTMLProgressElement extends HTMLElement {
16514
16514
  /**
16515
- * 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.
16515
+ * The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the progress element.
16516
16516
  *
16517
16517
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/labels)
16518
16518
  */
@@ -16624,7 +16624,7 @@ interface HTMLScriptElement extends HTMLElement {
16624
16624
  */
16625
16625
  noModule: boolean;
16626
16626
  /**
16627
- * 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.
16627
+ * 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.
16628
16628
  *
16629
16629
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/referrerPolicy)
16630
16630
  */
@@ -16689,7 +16689,7 @@ interface HTMLSelectElement extends HTMLElement {
16689
16689
  */
16690
16690
  readonly form: HTMLFormElement | null;
16691
16691
  /**
16692
- * The **`HTMLSelectElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<select>` element.
16692
+ * The **`HTMLSelectElement.labels`** read-only property returns a NodeList of the label elements associated with the select element.
16693
16693
  *
16694
16694
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels)
16695
16695
  */
@@ -16731,7 +16731,7 @@ interface HTMLSelectElement extends HTMLElement {
16731
16731
  */
16732
16732
  selectedIndex: number;
16733
16733
  /**
16734
- * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the element that are currently selected.
16734
+ * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the option elements contained within the select element that are currently selected.
16735
16735
  *
16736
16736
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions)
16737
16737
  */
@@ -16785,13 +16785,13 @@ interface HTMLSelectElement extends HTMLElement {
16785
16785
  */
16786
16786
  checkValidity(): boolean;
16787
16787
  /**
16788
- * 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.
16788
+ * 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.
16789
16789
  *
16790
16790
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/item)
16791
16791
  */
16792
16792
  item(index: number): HTMLOptionElement | null;
16793
16793
  /**
16794
- * The **`HTMLSelectElement.namedItem()`** method returns the whose `name` or `id` match the specified name, or `null` if no option matches.
16794
+ * 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.
16795
16795
  *
16796
16796
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/namedItem)
16797
16797
  */
@@ -17219,7 +17219,7 @@ interface HTMLTableElement extends HTMLElement {
17219
17219
  */
17220
17220
  cellPadding: string;
17221
17221
  /**
17222
- * 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.
17222
+ * 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.
17223
17223
  * @deprecated
17224
17224
  *
17225
17225
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/cellSpacing)
@@ -17233,7 +17233,7 @@ interface HTMLTableElement extends HTMLElement {
17233
17233
  */
17234
17234
  frame: string;
17235
17235
  /**
17236
- * 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.
17236
+ * 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.
17237
17237
  *
17238
17238
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/rows)
17239
17239
  */
@@ -17259,13 +17259,13 @@ interface HTMLTableElement extends HTMLElement {
17259
17259
  */
17260
17260
  readonly tBodies: HTMLCollectionOf<HTMLTableSectionElement>;
17261
17261
  /**
17262
- * The **`HTMLTableElement.tFoot`** property represents the `null` if there is no such element.
17262
+ * The **`HTMLTableElement.tFoot`** property represents the tfoot element of a table.
17263
17263
  *
17264
17264
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tFoot)
17265
17265
  */
17266
17266
  tFoot: HTMLTableSectionElement | null;
17267
17267
  /**
17268
- * The **`HTMLTableElement.tHead`** represents the `null` if there is no such element.
17268
+ * The **`HTMLTableElement.tHead`** represents the thead element of a table.
17269
17269
  *
17270
17270
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tHead)
17271
17271
  */
@@ -17278,31 +17278,31 @@ interface HTMLTableElement extends HTMLElement {
17278
17278
  */
17279
17279
  width: string;
17280
17280
  /**
17281
- * The **`HTMLTableElement.createCaption()`** method returns the If no `<caption>` element exists on the table, this method creates it, and then returns it.
17281
+ * The **`HTMLTableElement.createCaption()`** method returns the caption element associated with a given table.
17282
17282
  *
17283
17283
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createCaption)
17284
17284
  */
17285
17285
  createCaption(): HTMLTableCaptionElement;
17286
17286
  /**
17287
- * The **`createTBody()`** method of ```js-nolint createTBody() ``` None.
17287
+ * The **`createTBody()`** method of HTMLTableElement objects creates and returns a new tbody element associated with a given table.
17288
17288
  *
17289
17289
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTBody)
17290
17290
  */
17291
17291
  createTBody(): HTMLTableSectionElement;
17292
17292
  /**
17293
- * The **`createTFoot()`** method of associated with a given table.
17293
+ * The **`createTFoot()`** method of HTMLTableElement objects returns the tfoot element associated with a given table.
17294
17294
  *
17295
17295
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTFoot)
17296
17296
  */
17297
17297
  createTFoot(): HTMLTableSectionElement;
17298
17298
  /**
17299
- * The **`createTHead()`** method of associated with a given table.
17299
+ * The **`createTHead()`** method of HTMLTableElement objects returns the thead element associated with a given table.
17300
17300
  *
17301
17301
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTHead)
17302
17302
  */
17303
17303
  createTHead(): HTMLTableSectionElement;
17304
17304
  /**
17305
- * The **`HTMLTableElement.deleteCaption()`** method removes the `<caption>` element associated with the table, this method does nothing.
17305
+ * The **`HTMLTableElement.deleteCaption()`** method removes the caption element from a given table.
17306
17306
  *
17307
17307
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteCaption)
17308
17308
  */
@@ -17314,13 +17314,13 @@ interface HTMLTableElement extends HTMLElement {
17314
17314
  */
17315
17315
  deleteRow(index: number): void;
17316
17316
  /**
17317
- * The **`HTMLTableElement.deleteTFoot()`** method removes the ```js-nolint deleteTFoot() ``` None.
17317
+ * The **`HTMLTableElement.deleteTFoot()`** method removes the tfoot element from a given table.
17318
17318
  *
17319
17319
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTFoot)
17320
17320
  */
17321
17321
  deleteTFoot(): void;
17322
17322
  /**
17323
- * The **`HTMLTableElement.deleteTHead()`** removes the ```js-nolint deleteTHead() ``` None.
17323
+ * The **`HTMLTableElement.deleteTHead()`** removes the thead element from a given table.
17324
17324
  *
17325
17325
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTHead)
17326
17326
  */
@@ -17479,7 +17479,7 @@ interface HTMLTableSectionElement extends HTMLElement {
17479
17479
  */
17480
17480
  deleteRow(index: number): void;
17481
17481
  /**
17482
- * 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.
17482
+ * 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.
17483
17483
  *
17484
17484
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/insertRow)
17485
17485
  */
@@ -17502,7 +17502,7 @@ declare var HTMLTableSectionElement: {
17502
17502
  */
17503
17503
  interface HTMLTemplateElement extends HTMLElement {
17504
17504
  /**
17505
- * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a A DocumentFragment.
17505
+ * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a DocumentFragment).
17506
17506
  *
17507
17507
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
17508
17508
  */
@@ -17585,7 +17585,7 @@ interface HTMLTextAreaElement extends HTMLElement {
17585
17585
  */
17586
17586
  readonly form: HTMLFormElement | null;
17587
17587
  /**
17588
- * 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.
17588
+ * The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the textArea element.
17589
17589
  *
17590
17590
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/labels)
17591
17591
  */
@@ -17633,7 +17633,7 @@ interface HTMLTextAreaElement extends HTMLElement {
17633
17633
  */
17634
17634
  rows: number;
17635
17635
  /**
17636
- * <!-- --> The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
17636
+ * The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
17637
17637
  *
17638
17638
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection)
17639
17639
  */
@@ -17811,7 +17811,7 @@ interface HTMLTrackElement extends HTMLElement {
17811
17811
  */
17812
17812
  label: string;
17813
17813
  /**
17814
- * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state: 0.
17814
+ * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state:
17815
17815
  *
17816
17816
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState)
17817
17817
  */
@@ -17955,7 +17955,7 @@ interface HTMLVideoElement extends HTMLMediaElement {
17955
17955
  */
17956
17956
  cancelVideoFrameCallback(handle: number): void;
17957
17957
  /**
17958
- * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a frames have been lost.
17958
+ * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a VideoPlaybackQuality object containing metrics including how many frames have been lost.
17959
17959
  *
17960
17960
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality)
17961
17961
  */
@@ -17990,13 +17990,13 @@ declare var HTMLVideoElement: {
17990
17990
  */
17991
17991
  interface HashChangeEvent extends Event {
17992
17992
  /**
17993
- * The **`newURL`** read-only property of the navigating.
17993
+ * The **`newURL`** read-only property of the HashChangeEvent interface returns the new URL to which the window is navigating.
17994
17994
  *
17995
17995
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/newURL)
17996
17996
  */
17997
17997
  readonly newURL: string;
17998
17998
  /**
17999
- * The **`oldURL`** read-only property of the was navigated.
17999
+ * The **`oldURL`** read-only property of the HashChangeEvent interface returns the previous URL from which the window was navigated.
18000
18000
  *
18001
18001
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/oldURL)
18002
18002
  */
@@ -18166,19 +18166,19 @@ declare var History: {
18166
18166
  */
18167
18167
  interface IDBCursor {
18168
18168
  /**
18169
- * The **`direction`** read-only property of the direction of traversal of the cursor (set using section below for possible values.
18169
+ * 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).
18170
18170
  *
18171
18171
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/direction)
18172
18172
  */
18173
18173
  readonly direction: IDBCursorDirection;
18174
18174
  /**
18175
- * The **`key`** read-only property of the position.
18175
+ * The **`key`** read-only property of the IDBCursor interface returns the key for the record at the cursor's position.
18176
18176
  *
18177
18177
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/key)
18178
18178
  */
18179
18179
  readonly key: IDBValidKey;
18180
18180
  /**
18181
- * The **`primaryKey`** read-only property of the cursor is currently being iterated or has iterated outside its range, this is set to undefined.
18181
+ * The **`primaryKey`** read-only property of the IDBCursor interface returns the cursor's current effective key.
18182
18182
  *
18183
18183
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/primaryKey)
18184
18184
  */
@@ -18190,7 +18190,7 @@ interface IDBCursor {
18190
18190
  */
18191
18191
  readonly request: IDBRequest;
18192
18192
  /**
18193
- * 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.
18193
+ * The **`source`** read-only property of the IDBCursor interface returns the IDBObjectStore or IDBIndex that the cursor is iterating over.
18194
18194
  *
18195
18195
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/source)
18196
18196
  */
@@ -18208,7 +18208,7 @@ interface IDBCursor {
18208
18208
  */
18209
18209
  continue(key?: IDBValidKey): void;
18210
18210
  /**
18211
- * The **`continuePrimaryKey()`** method of the matches the key parameter as well as whose primary key matches the primary key parameter.
18211
+ * 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.
18212
18212
  *
18213
18213
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continuePrimaryKey)
18214
18214
  */
@@ -18239,7 +18239,7 @@ declare var IDBCursor: {
18239
18239
  */
18240
18240
  interface IDBCursorWithValue extends IDBCursor {
18241
18241
  /**
18242
- * The **`value`** read-only property of the whatever that is.
18242
+ * The **`value`** read-only property of the IDBCursorWithValue interface returns the value of the current cursor, whatever that is.
18243
18243
  *
18244
18244
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue/value)
18245
18245
  */
@@ -18271,7 +18271,7 @@ interface IDBDatabase extends EventTarget {
18271
18271
  */
18272
18272
  readonly name: string;
18273
18273
  /**
18274
- * The **`objectStoreNames`** read-only property of the list of the names of the object stores currently in the connected database.
18274
+ * 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.
18275
18275
  *
18276
18276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
18277
18277
  */
@@ -18295,13 +18295,13 @@ interface IDBDatabase extends EventTarget {
18295
18295
  */
18296
18296
  close(): void;
18297
18297
  /**
18298
- * 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.
18298
+ * The **`createObjectStore()`** method of the IDBDatabase interface creates and returns a new IDBObjectStore.
18299
18299
  *
18300
18300
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/createObjectStore)
18301
18301
  */
18302
18302
  createObjectStore(name: string, options?: IDBObjectStoreParameters): IDBObjectStore;
18303
18303
  /**
18304
- * The **`deleteObjectStore()`** method of the the connected database, along with any indexes that reference it.
18304
+ * 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.
18305
18305
  *
18306
18306
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/deleteObjectStore)
18307
18307
  */
@@ -18342,7 +18342,7 @@ interface IDBFactory {
18342
18342
  */
18343
18343
  databases(): Promise<IDBDatabaseInfo[]>;
18344
18344
  /**
18345
- * The **`deleteDatabase()`** method of the returns an IDBOpenDBRequest object immediately, and performs the deletion operation asynchronously.
18345
+ * The **`deleteDatabase()`** method of the IDBFactory interface requests the deletion of a database.
18346
18346
  *
18347
18347
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/deleteDatabase)
18348
18348
  */
@@ -18373,7 +18373,7 @@ interface IDBIndex {
18373
18373
  */
18374
18374
  readonly keyPath: string | string[];
18375
18375
  /**
18376
- * The **`multiEntry`** read-only property of the behaves when the result of evaluating the index's key path yields an array.
18376
+ * 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.
18377
18377
  *
18378
18378
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry)
18379
18379
  */
@@ -18403,7 +18403,7 @@ interface IDBIndex {
18403
18403
  */
18404
18404
  count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
18405
18405
  /**
18406
- * 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.
18406
+ * 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.
18407
18407
  *
18408
18408
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/get)
18409
18409
  */
@@ -18421,7 +18421,7 @@ interface IDBIndex {
18421
18421
  */
18422
18422
  getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18423
18423
  /**
18424
- * 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.
18424
+ * 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.
18425
18425
  *
18426
18426
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getKey)
18427
18427
  */
@@ -18433,7 +18433,7 @@ interface IDBIndex {
18433
18433
  */
18434
18434
  openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
18435
18435
  /**
18436
- * The **`openKeyCursor()`** method of the a separate thread, creates a cursor over the specified key range, as arranged by this index.
18436
+ * 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.
18437
18437
  *
18438
18438
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openKeyCursor)
18439
18439
  */
@@ -18452,25 +18452,25 @@ declare var IDBIndex: {
18452
18452
  */
18453
18453
  interface IDBKeyRange {
18454
18454
  /**
18455
- * 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.
18455
+ * The **`lower`** read-only property of the IDBKeyRange interface returns the lower bound of the key range.
18456
18456
  *
18457
18457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lower)
18458
18458
  */
18459
18459
  readonly lower: any;
18460
18460
  /**
18461
- * The **`lowerOpen`** read-only property of the lower-bound value is included in the key range.
18461
+ * The **`lowerOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the lower-bound value is included in the key range.
18462
18462
  *
18463
18463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerOpen)
18464
18464
  */
18465
18465
  readonly lowerOpen: boolean;
18466
18466
  /**
18467
- * 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.
18467
+ * The **`upper`** read-only property of the IDBKeyRange interface returns the upper bound of the key range.
18468
18468
  *
18469
18469
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upper)
18470
18470
  */
18471
18471
  readonly upper: any;
18472
18472
  /**
18473
- * The **`upperOpen`** read-only property of the upper-bound value is included in the key range.
18473
+ * The **`upperOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the upper-bound value is included in the key range.
18474
18474
  *
18475
18475
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperOpen)
18476
18476
  */
@@ -18493,7 +18493,7 @@ declare var IDBKeyRange: {
18493
18493
  */
18494
18494
  bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
18495
18495
  /**
18496
- * The **`lowerBound()`** static method of the By default, it includes the lower endpoint value and is closed.
18496
+ * The **`lowerBound()`** static method of the IDBKeyRange interface creates a new key range with only a lower bound.
18497
18497
  *
18498
18498
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
18499
18499
  */
@@ -18505,7 +18505,7 @@ declare var IDBKeyRange: {
18505
18505
  */
18506
18506
  only(value: any): IDBKeyRange;
18507
18507
  /**
18508
- * The **`upperBound()`** static method of the it includes the upper endpoint value and is closed.
18508
+ * The **`upperBound()`** static method of the IDBKeyRange interface creates a new upper-bound key range.
18509
18509
  *
18510
18510
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
18511
18511
  */
@@ -18519,19 +18519,19 @@ declare var IDBKeyRange: {
18519
18519
  */
18520
18520
  interface IDBObjectStore {
18521
18521
  /**
18522
- * The **`autoIncrement`** read-only property of the for this object store.
18522
+ * The **`autoIncrement`** read-only property of the IDBObjectStore interface returns the value of the auto increment flag for this object store.
18523
18523
  *
18524
18524
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/autoIncrement)
18525
18525
  */
18526
18526
  readonly autoIncrement: boolean;
18527
18527
  /**
18528
- * The **`indexNames`** read-only property of the in this object store.
18528
+ * The **`indexNames`** read-only property of the IDBObjectStore interface returns a list of the names of indexes on objects in this object store.
18529
18529
  *
18530
18530
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/indexNames)
18531
18531
  */
18532
18532
  readonly indexNames: DOMStringList;
18533
18533
  /**
18534
- * The **`keyPath`** read-only property of the If this property is null, the application must provide a key for each modification operation.
18534
+ * The **`keyPath`** read-only property of the IDBObjectStore interface returns the key path of this object store.
18535
18535
  *
18536
18536
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
18537
18537
  */
@@ -18543,7 +18543,7 @@ interface IDBObjectStore {
18543
18543
  */
18544
18544
  name: string;
18545
18545
  /**
18546
- * The **`transaction`** read-only property of the object store belongs.
18546
+ * The **`transaction`** read-only property of the IDBObjectStore interface returns the transaction object to which this object store belongs.
18547
18547
  *
18548
18548
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/transaction)
18549
18549
  */
@@ -18561,25 +18561,25 @@ interface IDBObjectStore {
18561
18561
  */
18562
18562
  clear(): IDBRequest<undefined>;
18563
18563
  /**
18564
- * 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.
18564
+ * 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.
18565
18565
  *
18566
18566
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/count)
18567
18567
  */
18568
18568
  count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
18569
18569
  /**
18570
- * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.
18570
+ * The **`createIndex()`** method of the IDBObjectStore interface creates and returns a new IDBIndex object in the connected database.
18571
18571
  *
18572
18572
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)
18573
18573
  */
18574
18574
  createIndex(name: string, keyPath: string | string[], options?: IDBIndexParameters): IDBIndex;
18575
18575
  /**
18576
- * The **`delete()`** method of the and, in a separate thread, deletes the specified record or records.
18576
+ * The **`delete()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, deletes the specified record or records.
18577
18577
  *
18578
18578
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/delete)
18579
18579
  */
18580
18580
  delete(query: IDBValidKey | IDBKeyRange): IDBRequest<undefined>;
18581
18581
  /**
18582
- * The **`deleteIndex()`** method of the the connected database, used during a version upgrade.
18582
+ * The **`deleteIndex()`** method of the IDBObjectStore interface destroys the index with the specified name in the connected database, used during a version upgrade.
18583
18583
  *
18584
18584
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/deleteIndex)
18585
18585
  */
@@ -18591,7 +18591,7 @@ interface IDBObjectStore {
18591
18591
  */
18592
18592
  get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;
18593
18593
  /**
18594
- * 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.
18594
+ * 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.
18595
18595
  *
18596
18596
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
18597
18597
  */
@@ -18603,7 +18603,7 @@ interface IDBObjectStore {
18603
18603
  */
18604
18604
  getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18605
18605
  /**
18606
- * The **`getKey()`** method of the and, in a separate thread, returns the key selected by the specified query.
18606
+ * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
18607
18607
  *
18608
18608
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getKey)
18609
18609
  */
@@ -18615,13 +18615,13 @@ interface IDBObjectStore {
18615
18615
  */
18616
18616
  index(name: string): IDBIndex;
18617
18617
  /**
18618
- * The **`openCursor()`** method of the and, in a separate thread, returns a new IDBCursorWithValue object.
18618
+ * The **`openCursor()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns a new IDBCursorWithValue object.
18619
18619
  *
18620
18620
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openCursor)
18621
18621
  */
18622
18622
  openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
18623
18623
  /**
18624
- * The **`openKeyCursor()`** method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.
18624
+ * 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.
18625
18625
  *
18626
18626
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openKeyCursor)
18627
18627
  */
@@ -18677,7 +18677,7 @@ interface IDBRequestEventMap {
18677
18677
  */
18678
18678
  interface IDBRequest<T = any> extends EventTarget {
18679
18679
  /**
18680
- * The **`error`** read-only property of the request.
18680
+ * The **`error`** read-only property of the IDBRequest interface returns the error in the event of an unsuccessful request.
18681
18681
  *
18682
18682
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error)
18683
18683
  */
@@ -18687,19 +18687,19 @@ interface IDBRequest<T = any> extends EventTarget {
18687
18687
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/success_event) */
18688
18688
  onsuccess: ((this: IDBRequest<T>, ev: Event) => any) | null;
18689
18689
  /**
18690
- * The **`readyState`** read-only property of the Every request starts in the `pending` state.
18690
+ * The **`readyState`** read-only property of the IDBRequest interface returns the state of the request.
18691
18691
  *
18692
18692
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/readyState)
18693
18693
  */
18694
18694
  readonly readyState: IDBRequestReadyState;
18695
18695
  /**
18696
- * 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.
18696
+ * The **`result`** read-only property of the IDBRequest interface returns the result of the request.
18697
18697
  *
18698
18698
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/result)
18699
18699
  */
18700
18700
  readonly result: T;
18701
18701
  /**
18702
- * The **`source`** read-only property of the Index or an object store.
18702
+ * The **`source`** read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store.
18703
18703
  *
18704
18704
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/source)
18705
18705
  */
@@ -18752,13 +18752,13 @@ interface IDBTransaction extends EventTarget {
18752
18752
  */
18753
18753
  readonly error: DOMException | null;
18754
18754
  /**
18755
- * 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`.
18755
+ * 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`.
18756
18756
  *
18757
18757
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/mode)
18758
18758
  */
18759
18759
  readonly mode: IDBTransactionMode;
18760
18760
  /**
18761
- * The **`objectStoreNames`** read-only property of the of IDBObjectStore objects.
18761
+ * The **`objectStoreNames`** read-only property of the IDBTransaction interface returns a DOMStringList of names of IDBObjectStore objects.
18762
18762
  *
18763
18763
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)
18764
18764
  */
@@ -18782,7 +18782,7 @@ interface IDBTransaction extends EventTarget {
18782
18782
  */
18783
18783
  commit(): void;
18784
18784
  /**
18785
- * The **`objectStore()`** method of the added to the scope of this transaction.
18785
+ * The **`objectStore()`** method of the IDBTransaction interface returns an object store that has already been added to the scope of this transaction.
18786
18786
  *
18787
18787
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStore)
18788
18788
  */
@@ -18805,13 +18805,13 @@ declare var IDBTransaction: {
18805
18805
  */
18806
18806
  interface IDBVersionChangeEvent extends Event {
18807
18807
  /**
18808
- * The **`newVersion`** read-only property of the database.
18808
+ * The **`newVersion`** read-only property of the IDBVersionChangeEvent interface returns the new version number of the database.
18809
18809
  *
18810
18810
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/newVersion)
18811
18811
  */
18812
18812
  readonly newVersion: number | null;
18813
18813
  /**
18814
- * The **`oldVersion`** read-only property of the database.
18814
+ * The **`oldVersion`** read-only property of the IDBVersionChangeEvent interface returns the old version number of the database.
18815
18815
  *
18816
18816
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/oldVersion)
18817
18817
  */
@@ -18905,7 +18905,7 @@ declare var ImageBitmap: {
18905
18905
  */
18906
18906
  interface ImageBitmapRenderingContext {
18907
18907
  /**
18908
- * The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the A HTMLCanvasElement or OffscreenCanvas object.
18908
+ * 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.
18909
18909
  *
18910
18910
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/canvas)
18911
18911
  */
@@ -18931,7 +18931,7 @@ declare var ImageBitmapRenderingContext: {
18931
18931
  */
18932
18932
  interface ImageCapture {
18933
18933
  /**
18934
- * The **`track`** read-only property of the A MediaStreamTrack object.
18934
+ * The **`track`** read-only property of the ImageCapture interface returns a reference to the MediaStreamTrack passed to the ImageCapture.ImageCapture constructor.
18935
18935
  *
18936
18936
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/track)
18937
18937
  */
@@ -18949,13 +18949,13 @@ interface ImageCapture {
18949
18949
  */
18950
18950
  getPhotoSettings(): Promise<PhotoSettings>;
18951
18951
  /**
18952
- * The **`grabFrame()`** method of the a ImageBitmap containing the snapshot.
18952
+ * 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.
18953
18953
  *
18954
18954
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/grabFrame)
18955
18955
  */
18956
18956
  grabFrame(): Promise<ImageBitmap>;
18957
18957
  /**
18958
- * The **`takePhoto()`** method of the device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
18958
+ * 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.
18959
18959
  *
18960
18960
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/takePhoto)
18961
18961
  */
@@ -18980,7 +18980,7 @@ interface ImageData {
18980
18980
  */
18981
18981
  readonly colorSpace: PredefinedColorSpace;
18982
18982
  /**
18983
- * The readonly **`ImageData.data`** property returns a pixel data.
18983
+ * The readonly **`ImageData.data`** property returns a Uint8ClampedArray or Float16Array that contains the ImageData object's pixel data.
18984
18984
  *
18985
18985
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)
18986
18986
  */
@@ -19174,25 +19174,25 @@ declare var InputDeviceInfo: {
19174
19174
  */
19175
19175
  interface InputEvent extends UIEvent {
19176
19176
  /**
19177
- * The **`data`** read-only property of the characters.
19177
+ * The **`data`** read-only property of the InputEvent interface returns a string with inserted characters.
19178
19178
  *
19179
19179
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/data)
19180
19180
  */
19181
19181
  readonly data: string | null;
19182
19182
  /**
19183
- * The **`dataTransfer`** read-only property of the containing information about richtext or plaintext data being added to or removed from editable content.
19183
+ * 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.
19184
19184
  *
19185
19185
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/dataTransfer)
19186
19186
  */
19187
19187
  readonly dataTransfer: DataTransfer | null;
19188
19188
  /**
19189
- * The **`inputType`** read-only property of the Possible changes include for example inserting, deleting, and formatting text.
19189
+ * The **`inputType`** read-only property of the InputEvent interface returns the type of change made to editable content.
19190
19190
  *
19191
19191
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/inputType)
19192
19192
  */
19193
19193
  readonly inputType: string;
19194
19194
  /**
19195
- * The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after A boolean.
19195
+ * 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.
19196
19196
  *
19197
19197
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/isComposing)
19198
19198
  */
@@ -19348,7 +19348,7 @@ interface KeyboardEvent extends UIEvent {
19348
19348
  */
19349
19349
  readonly altKey: boolean;
19350
19350
  /**
19351
- * The **`charCode`** read-only property of the pressed during a Element/keypress_event event.
19351
+ * The **`charCode`** read-only property of the KeyboardEvent interface returns the Unicode value of a character key pressed during a Element/keypress_event event.
19352
19352
  * @deprecated
19353
19353
  *
19354
19354
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/charCode)
@@ -19398,7 +19398,7 @@ interface KeyboardEvent extends UIEvent {
19398
19398
  */
19399
19399
  readonly metaKey: boolean;
19400
19400
  /**
19401
- * The **`repeat`** read-only property of the `true` if the given key is being held down such that it is automatically repeating.
19401
+ * 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.
19402
19402
  *
19403
19403
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/repeat)
19404
19404
  */
@@ -19550,7 +19550,7 @@ interface LinkStyle {
19550
19550
  */
19551
19551
  interface Location {
19552
19552
  /**
19553
- * The **`ancestorOrigins`** read-only property of the Location interface is a static browsing contexts of the document associated with the given Location object.
19553
+ * 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.
19554
19554
  *
19555
19555
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins)
19556
19556
  */
@@ -19649,7 +19649,7 @@ interface Lock {
19649
19649
  */
19650
19650
  readonly mode: LockMode;
19651
19651
  /**
19652
- * 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.
19652
+ * The **`name`** read-only property of the Lock interface returns the _name_ passed to LockManager.request selected when the lock was requested.
19653
19653
  *
19654
19654
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/name)
19655
19655
  */
@@ -20070,7 +20070,7 @@ declare var MediaDevices: {
20070
20070
  */
20071
20071
  interface MediaElementAudioSourceNode extends AudioNode {
20072
20072
  /**
20073
- * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the receiving audio.
20073
+ * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the HTMLMediaElement that contains the audio track from which the node is receiving audio.
20074
20074
  *
20075
20075
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaElementAudioSourceNode/mediaElement)
20076
20076
  */
@@ -20267,7 +20267,7 @@ interface MediaKeyStatusMap {
20267
20267
  */
20268
20268
  get(keyId: BufferSource): MediaKeyStatus | undefined;
20269
20269
  /**
20270
- * The **`has()`** method of the whether a value has been associated with the given key.
20270
+ * The **`has()`** method of the MediaKeyStatusMap interface returns a Boolean, asserting whether a value has been associated with the given key.
20271
20271
  *
20272
20272
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/has)
20273
20273
  */
@@ -20294,13 +20294,13 @@ interface MediaKeySystemAccess {
20294
20294
  */
20295
20295
  readonly keySystem: string;
20296
20296
  /**
20297
- * The `MediaKeySystemAccess.createMediaKeys()` method returns a ```js-nolint createMediaKeys() ``` None.
20297
+ * The `MediaKeySystemAccess.createMediaKeys()` method returns a Promise that resolves to a new MediaKeys object.
20298
20298
  *
20299
20299
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/createMediaKeys)
20300
20300
  */
20301
20301
  createMediaKeys(): Promise<MediaKeys>;
20302
20302
  /**
20303
- * 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.
20303
+ * The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options:
20304
20304
  *
20305
20305
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/getConfiguration)
20306
20306
  */
@@ -20396,25 +20396,25 @@ declare var MediaList: {
20396
20396
  */
20397
20397
  interface MediaMetadata {
20398
20398
  /**
20399
- * The **`album`** property of the collection containing the media to be played.
20399
+ * The **`album`** property of the MediaMetadata interface returns or sets the name of the album or collection containing the media to be played.
20400
20400
  *
20401
20401
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/album)
20402
20402
  */
20403
20403
  album: string;
20404
20404
  /**
20405
- * The **`artist`** property of the creator, etc., of the media to be played.
20405
+ * The **`artist`** property of the MediaMetadata interface returns or sets the name of the artist, group, creator, etc., of the media to be played.
20406
20406
  *
20407
20407
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artist)
20408
20408
  */
20409
20409
  artist: string;
20410
20410
  /**
20411
- * The **`artwork`** property of the objects representing images associated with playing media.
20411
+ * The **`artwork`** property of the MediaMetadata interface returns or sets an array of objects representing images associated with playing media.
20412
20412
  *
20413
20413
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artwork)
20414
20414
  */
20415
20415
  artwork: ReadonlyArray<MediaImage>;
20416
20416
  /**
20417
- * The **`title`** property of the played.
20417
+ * The **`title`** property of the MediaMetadata interface returns or sets the title of the media to be played.
20418
20418
  *
20419
20419
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/title)
20420
20420
  */
@@ -20437,13 +20437,13 @@ interface MediaQueryListEventMap {
20437
20437
  */
20438
20438
  interface MediaQueryList extends EventTarget {
20439
20439
  /**
20440
- * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
20440
+ * 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.
20441
20441
  *
20442
20442
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/matches)
20443
20443
  */
20444
20444
  readonly matches: boolean;
20445
20445
  /**
20446
- * The **`media`** read-only property of the serialized media query.
20446
+ * The **`media`** read-only property of the MediaQueryList interface is a string representing a serialized media query.
20447
20447
  *
20448
20448
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/media)
20449
20449
  */
@@ -20451,14 +20451,14 @@ interface MediaQueryList extends EventTarget {
20451
20451
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/change_event) */
20452
20452
  onchange: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null;
20453
20453
  /**
20454
- * The deprecated **`addListener()`** method of the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
20454
+ * 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.
20455
20455
  * @deprecated
20456
20456
  *
20457
20457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/addListener)
20458
20458
  */
20459
20459
  addListener(callback: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null): void;
20460
20460
  /**
20461
- * The **`removeListener()`** method of the `MediaQueryListener`.
20461
+ * The **`removeListener()`** method of the MediaQueryList interface removes a listener from the `MediaQueryListener`.
20462
20462
  * @deprecated
20463
20463
  *
20464
20464
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/removeListener)
@@ -20482,13 +20482,13 @@ declare var MediaQueryList: {
20482
20482
  */
20483
20483
  interface MediaQueryListEvent extends Event {
20484
20484
  /**
20485
- * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
20485
+ * 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.
20486
20486
  *
20487
20487
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/matches)
20488
20488
  */
20489
20489
  readonly matches: boolean;
20490
20490
  /**
20491
- * The **`media`** read-only property of the a serialized media query.
20491
+ * The **`media`** read-only property of the MediaQueryListEvent interface is a string representing a serialized media query.
20492
20492
  *
20493
20493
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/media)
20494
20494
  */
@@ -20564,7 +20564,7 @@ interface MediaRecorder extends EventTarget {
20564
20564
  */
20565
20565
  pause(): void;
20566
20566
  /**
20567
- * The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a called.
20567
+ * 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.
20568
20568
  *
20569
20569
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/requestData)
20570
20570
  */
@@ -20617,7 +20617,7 @@ interface MediaSession {
20617
20617
  */
20618
20618
  metadata: MediaMetadata | null;
20619
20619
  /**
20620
- * The **`playbackState`** property of the playing or paused.
20620
+ * The **`playbackState`** property of the MediaSession interface indicates whether the current media session is playing or paused.
20621
20621
  *
20622
20622
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/playbackState)
20623
20623
  */
@@ -20641,7 +20641,7 @@ interface MediaSession {
20641
20641
  */
20642
20642
  setMicrophoneActive(active: boolean): Promise<void>;
20643
20643
  /**
20644
- * 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.
20644
+ * 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.
20645
20645
  *
20646
20646
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setPositionState)
20647
20647
  */
@@ -20666,7 +20666,7 @@ interface MediaSourceEventMap {
20666
20666
  */
20667
20667
  interface MediaSource extends EventTarget {
20668
20668
  /**
20669
- * 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.
20669
+ * 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.
20670
20670
  *
20671
20671
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/activeSourceBuffers)
20672
20672
  */
@@ -20684,31 +20684,31 @@ interface MediaSource extends EventTarget {
20684
20684
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
20685
20685
  onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
20686
20686
  /**
20687
- * The **`readyState`** read-only property of the current `MediaSource`.
20687
+ * The **`readyState`** read-only property of the MediaSource interface returns an enum representing the state of the current `MediaSource`.
20688
20688
  *
20689
20689
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState)
20690
20690
  */
20691
20691
  readonly readyState: ReadyState;
20692
20692
  /**
20693
- * The **`sourceBuffers`** read-only property of the containing the list of SourceBuffer objects associated with this `MediaSource`.
20693
+ * The **`sourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing the list of SourceBuffer objects associated with this `MediaSource`.
20694
20694
  *
20695
20695
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceBuffers)
20696
20696
  */
20697
20697
  readonly sourceBuffers: SourceBufferList;
20698
20698
  /**
20699
- * The **`addSourceBuffer()`** method of the given MIME type and adds it to the `MediaSource`'s `SourceBuffer` is also returned.
20699
+ * 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.
20700
20700
  *
20701
20701
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/addSourceBuffer)
20702
20702
  */
20703
20703
  addSourceBuffer(type: string): SourceBuffer;
20704
20704
  /**
20705
- * The **`clearLiveSeekableRange()`** method of the to MediaSource.setLiveSeekableRange().
20705
+ * The **`clearLiveSeekableRange()`** method of the MediaSource interface clears a seekable range previously set with a call to MediaSource.setLiveSeekableRange().
20706
20706
  *
20707
20707
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/clearLiveSeekableRange)
20708
20708
  */
20709
20709
  clearLiveSeekableRange(): void;
20710
20710
  /**
20711
- * 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.
20711
+ * The **`endOfStream()`** method of the MediaSource interface signals the end of the stream.
20712
20712
  *
20713
20713
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/endOfStream)
20714
20714
  */
@@ -20720,7 +20720,7 @@ interface MediaSource extends EventTarget {
20720
20720
  */
20721
20721
  removeSourceBuffer(sourceBuffer: SourceBuffer): void;
20722
20722
  /**
20723
- * The **`setLiveSeekableRange()`** method of the media element.
20723
+ * The **`setLiveSeekableRange()`** method of the MediaSource interface sets the range that the user can seek to in the media element.
20724
20724
  *
20725
20725
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/setLiveSeekableRange)
20726
20726
  */
@@ -20773,7 +20773,7 @@ interface MediaStreamEventMap {
20773
20773
  */
20774
20774
  interface MediaStream extends EventTarget {
20775
20775
  /**
20776
- * The **`active`** read-only property of the `true` if the stream is currently active; otherwise, it returns `false`.
20776
+ * 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`.
20777
20777
  *
20778
20778
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/active)
20779
20779
  */
@@ -20801,7 +20801,7 @@ interface MediaStream extends EventTarget {
20801
20801
  */
20802
20802
  clone(): MediaStream;
20803
20803
  /**
20804
- * The **`getAudioTracks()`** method of the stream's track set where MediaStreamTrack.kind is `audio`.
20804
+ * 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`.
20805
20805
  *
20806
20806
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getAudioTracks)
20807
20807
  */
@@ -20813,19 +20813,19 @@ interface MediaStream extends EventTarget {
20813
20813
  */
20814
20814
  getTrackById(trackId: string): MediaStreamTrack | null;
20815
20815
  /**
20816
- * The **`getTracks()`** method of the stream's track set, regardless of MediaStreamTrack.kind.
20816
+ * 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.
20817
20817
  *
20818
20818
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getTracks)
20819
20819
  */
20820
20820
  getTracks(): MediaStreamTrack[];
20821
20821
  /**
20822
- * The **`getVideoTracks()`** method of the ```js-nolint getVideoTracks() ``` None.
20822
+ * The **`getVideoTracks()`** method of the MediaStream interface returns a sequence of MediaStreamTrack objects representing the video tracks in this stream.
20823
20823
  *
20824
20824
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getVideoTracks)
20825
20825
  */
20826
20826
  getVideoTracks(): MediaStreamTrack[];
20827
20827
  /**
20828
- * The **`removeTrack()`** method of the MediaStream interface removes a ```js-nolint removeTrack(track) ``` - `track` - : A MediaStreamTrack that will be removed from the stream.
20828
+ * The **`removeTrack()`** method of the MediaStream interface removes a MediaStreamTrack from a stream.
20829
20829
  *
20830
20830
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/removeTrack)
20831
20831
  */
@@ -20869,7 +20869,7 @@ declare var MediaStreamAudioDestinationNode: {
20869
20869
  */
20870
20870
  interface MediaStreamAudioSourceNode extends AudioNode {
20871
20871
  /**
20872
- * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the receiving audio.
20872
+ * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the MediaStream that contains the audio track from which the node is receiving audio.
20873
20873
  *
20874
20874
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioSourceNode/mediaStream)
20875
20875
  */
@@ -20900,7 +20900,7 @@ interface MediaStreamTrack extends EventTarget {
20900
20900
  */
20901
20901
  contentHint: string;
20902
20902
  /**
20903
- * The **`enabled`** property of the `true` if the track is allowed to render the source stream or `false` if it is not.
20903
+ * 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.
20904
20904
  *
20905
20905
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/enabled)
20906
20906
  */
@@ -20924,7 +20924,7 @@ interface MediaStreamTrack extends EventTarget {
20924
20924
  */
20925
20925
  readonly label: string;
20926
20926
  /**
20927
- * The **`muted`** read-only property of the indicating whether or not the track is currently unable to provide media output.
20927
+ * 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.
20928
20928
  *
20929
20929
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/muted)
20930
20930
  */
@@ -20960,13 +20960,13 @@ interface MediaStreamTrack extends EventTarget {
20960
20960
  */
20961
20961
  getCapabilities(): MediaTrackCapabilities;
20962
20962
  /**
20963
- * 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.
20963
+ * 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.
20964
20964
  *
20965
20965
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getConstraints)
20966
20966
  */
20967
20967
  getConstraints(): MediaTrackConstraints;
20968
20968
  /**
20969
- * The **`getSettings()`** method of the object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
20969
+ * 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`.
20970
20970
  *
20971
20971
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getSettings)
20972
20972
  */
@@ -21014,13 +21014,13 @@ declare var MediaStreamTrackEvent: {
21014
21014
  */
21015
21015
  interface MessageChannel {
21016
21016
  /**
21017
- * The **`port1`** read-only property of the the port attached to the context that originated the channel.
21017
+ * 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.
21018
21018
  *
21019
21019
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1)
21020
21020
  */
21021
21021
  readonly port1: MessagePort;
21022
21022
  /**
21023
- * 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.
21023
+ * 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.
21024
21024
  *
21025
21025
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2)
21026
21026
  */
@@ -21039,31 +21039,31 @@ declare var MessageChannel: {
21039
21039
  */
21040
21040
  interface MessageEvent<T = any> extends Event {
21041
21041
  /**
21042
- * 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.
21042
+ * The **`data`** read-only property of the MessageEvent interface represents the data sent by the message emitter.
21043
21043
  *
21044
21044
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data)
21045
21045
  */
21046
21046
  readonly data: T;
21047
21047
  /**
21048
- * The **`lastEventId`** read-only property of the unique ID for the event.
21048
+ * The **`lastEventId`** read-only property of the MessageEvent interface is a string representing a unique ID for the event.
21049
21049
  *
21050
21050
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId)
21051
21051
  */
21052
21052
  readonly lastEventId: string;
21053
21053
  /**
21054
- * The **`origin`** read-only property of the origin of the message emitter.
21054
+ * The **`origin`** read-only property of the MessageEvent interface is a string representing the origin of the message emitter.
21055
21055
  *
21056
21056
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin)
21057
21057
  */
21058
21058
  readonly origin: string;
21059
21059
  /**
21060
- * The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.
21060
+ * 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.
21061
21061
  *
21062
21062
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports)
21063
21063
  */
21064
21064
  readonly ports: ReadonlyArray<MessagePort>;
21065
21065
  /**
21066
- * The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter.
21066
+ * 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.
21067
21067
  *
21068
21068
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
21069
21069
  */
@@ -21111,7 +21111,7 @@ interface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {
21111
21111
  */
21112
21112
  close(): void;
21113
21113
  /**
21114
- * The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.
21114
+ * The **`postMessage()`** method of the MessagePort interface sends a message from the port, and optionally, transfers ownership of objects to other browsing contexts.
21115
21115
  *
21116
21116
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage)
21117
21117
  */
@@ -21653,7 +21653,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21653
21653
  readonly credentials: CredentialsContainer;
21654
21654
  readonly doNotTrack: string | null;
21655
21655
  /**
21656
- * The **`Navigator.geolocation`** read-only property returns a device.
21656
+ * The **`Navigator.geolocation`** read-only property returns a Geolocation object that gives Web content access to the location of the device.
21657
21657
  *
21658
21658
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/geolocation)
21659
21659
  */
@@ -21666,7 +21666,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21666
21666
  */
21667
21667
  readonly login: NavigatorLogin;
21668
21668
  /**
21669
- * The **`maxTouchPoints`** read-only property of the contact points that are supported by the current device.
21669
+ * 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.
21670
21670
  *
21671
21671
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/maxTouchPoints)
21672
21672
  */
@@ -21691,7 +21691,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21691
21691
  */
21692
21692
  readonly mediaSession: MediaSession;
21693
21693
  /**
21694
- * The **`permissions`** read-only property of the Navigator interface returns a status of APIs covered by the Permissions API.
21694
+ * 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.
21695
21695
  *
21696
21696
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/permissions)
21697
21697
  */
@@ -21723,7 +21723,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21723
21723
  */
21724
21724
  canShare(data?: ShareData): boolean;
21725
21725
  /**
21726
- * 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.
21726
+ * The **`Navigator.getGamepads()`** method returns an array of Gamepad objects, one for each gamepad connected to the device.
21727
21727
  *
21728
21728
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/getGamepads)
21729
21729
  */
@@ -21933,7 +21933,7 @@ interface Node extends EventTarget {
21933
21933
  */
21934
21934
  readonly baseURI: string;
21935
21935
  /**
21936
- * The read-only **`childNodes`** property of the Node interface returns a live the first child node is assigned index `0`.
21936
+ * 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`.
21937
21937
  *
21938
21938
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
21939
21939
  */
@@ -21999,7 +21999,7 @@ interface Node extends EventTarget {
21999
21999
  */
22000
22000
  readonly parentNode: ParentNode | null;
22001
22001
  /**
22002
- * 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.
22002
+ * 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.
22003
22003
  *
22004
22004
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling)
22005
22005
  */
@@ -22182,19 +22182,19 @@ interface NodeIterator {
22182
22182
  */
22183
22183
  readonly filter: NodeFilter | null;
22184
22184
  /**
22185
- * 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.
22185
+ * 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.
22186
22186
  *
22187
22187
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/pointerBeforeReferenceNode)
22188
22188
  */
22189
22189
  readonly pointerBeforeReferenceNode: boolean;
22190
22190
  /**
22191
- * The **`NodeIterator.referenceNode`** read-only property returns the iterator remains anchored to the reference node as specified by this property.
22191
+ * 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.
22192
22192
  *
22193
22193
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/referenceNode)
22194
22194
  */
22195
22195
  readonly referenceNode: Node;
22196
22196
  /**
22197
- * The **`NodeIterator.root`** read-only property represents the traverses.
22197
+ * The **`NodeIterator.root`** read-only property represents the Node that is the root of what the NodeIterator traverses.
22198
22198
  *
22199
22199
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/root)
22200
22200
  */
@@ -22302,13 +22302,13 @@ interface NotificationEventMap {
22302
22302
  */
22303
22303
  interface Notification extends EventTarget {
22304
22304
  /**
22305
- * The **`body`** read-only property of the specified in the `body` option of the A string.
22305
+ * 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.
22306
22306
  *
22307
22307
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body)
22308
22308
  */
22309
22309
  readonly body: string;
22310
22310
  /**
22311
- * 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.
22311
+ * 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.
22312
22312
  *
22313
22313
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data)
22314
22314
  */
@@ -22320,13 +22320,13 @@ interface Notification extends EventTarget {
22320
22320
  */
22321
22321
  readonly dir: NotificationDirection;
22322
22322
  /**
22323
- * The **`icon`** read-only property of the part of the notification, as specified in the `icon` option of the A string.
22323
+ * 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.
22324
22324
  *
22325
22325
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/icon)
22326
22326
  */
22327
22327
  readonly icon: string;
22328
22328
  /**
22329
- * 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)')].
22329
+ * 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.
22330
22330
  *
22331
22331
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/lang)
22332
22332
  */
@@ -22346,19 +22346,19 @@ interface Notification extends EventTarget {
22346
22346
  */
22347
22347
  readonly requireInteraction: boolean;
22348
22348
  /**
22349
- * The **`silent`** read-only property of the silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
22349
+ * 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.
22350
22350
  *
22351
22351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent)
22352
22352
  */
22353
22353
  readonly silent: boolean | null;
22354
22354
  /**
22355
- * 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.
22355
+ * 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.
22356
22356
  *
22357
22357
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag)
22358
22358
  */
22359
22359
  readonly tag: string;
22360
22360
  /**
22361
- * The **`title`** read-only property of the specified in the `title` parameter of the A string.
22361
+ * 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.
22362
22362
  *
22363
22363
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/title)
22364
22364
  */
@@ -22513,13 +22513,13 @@ interface OES_vertex_array_object {
22513
22513
  */
22514
22514
  bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
22515
22515
  /**
22516
- * 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.
22516
+ * 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.
22517
22517
  *
22518
22518
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/createVertexArrayOES)
22519
22519
  */
22520
22520
  createVertexArrayOES(): WebGLVertexArrayObjectOES;
22521
22521
  /**
22522
- * 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.
22522
+ * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given WebGLVertexArrayObject object.
22523
22523
  *
22524
22524
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES)
22525
22525
  */
@@ -22558,7 +22558,7 @@ interface OVR_multiview2 {
22558
22558
  */
22559
22559
  interface OfflineAudioCompletionEvent extends Event {
22560
22560
  /**
22561
- * The **`renderedBuffer`** read-only property of the containing the result of processing an OfflineAudioContext.
22561
+ * The **`renderedBuffer`** read-only property of the OfflineAudioCompletionEvent interface is an AudioBuffer containing the result of processing an OfflineAudioContext.
22562
22562
  *
22563
22563
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer)
22564
22564
  */
@@ -22581,7 +22581,7 @@ interface OfflineAudioContextEventMap extends BaseAudioContextEventMap {
22581
22581
  */
22582
22582
  interface OfflineAudioContext extends BaseAudioContext {
22583
22583
  /**
22584
- * The **`length`** property of the the buffer in sample-frames.
22584
+ * The **`length`** property of the OfflineAudioContext interface returns an integer representing the size of the buffer in sample-frames.
22585
22585
  *
22586
22586
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/length)
22587
22587
  */
@@ -22589,7 +22589,7 @@ interface OfflineAudioContext extends BaseAudioContext {
22589
22589
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/complete_event) */
22590
22590
  oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null;
22591
22591
  /**
22592
- * The **`resume()`** method of the context that has been suspended.
22592
+ * The **`resume()`** method of the OfflineAudioContext interface resumes the progression of time in an audio context that has been suspended.
22593
22593
  *
22594
22594
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/resume)
22595
22595
  */
@@ -22718,7 +22718,7 @@ interface OscillatorNode extends AudioScheduledSourceNode {
22718
22718
  */
22719
22719
  type: OscillatorType;
22720
22720
  /**
22721
- * 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.
22721
+ * 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`.
22722
22722
  *
22723
22723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/setPeriodicWave)
22724
22724
  */
@@ -22741,7 +22741,7 @@ declare var OscillatorNode: {
22741
22741
  */
22742
22742
  interface OverconstrainedError extends DOMException {
22743
22743
  /**
22744
- * The **`constraint`** read-only property of the in the constructor, meaning the constraint that was not satisfied.
22744
+ * 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.
22745
22745
  *
22746
22746
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint)
22747
22747
  */
@@ -23134,7 +23134,7 @@ interface PaymentRequestEventMap {
23134
23134
  */
23135
23135
  interface PaymentRequest extends EventTarget {
23136
23136
  /**
23137
- * The **`id`** read-only attribute of the When constructing an instance of the PaymentRequest, you are able to supply an custom id.
23137
+ * The **`id`** read-only attribute of the PaymentRequest interface returns a unique identifier for a particular PaymentRequest instance.
23138
23138
  *
23139
23139
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/id)
23140
23140
  */
@@ -23168,7 +23168,7 @@ interface PaymentRequest extends EventTarget {
23168
23168
  */
23169
23169
  readonly shippingOption: string | null;
23170
23170
  /**
23171
- * The **`shippingType`** read-only property of the `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
23171
+ * 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.
23172
23172
  * @deprecated
23173
23173
  *
23174
23174
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingType)
@@ -23211,7 +23211,7 @@ declare var PaymentRequest: {
23211
23211
  */
23212
23212
  interface PaymentRequestUpdateEvent extends Event {
23213
23213
  /**
23214
- * 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.
23214
+ * The **`updateWith()`** method of the PaymentRequestUpdateEvent interface updates the details of an existing PaymentRequest.
23215
23215
  *
23216
23216
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequestUpdateEvent/updateWith)
23217
23217
  */
@@ -23235,7 +23235,7 @@ interface PaymentResponseEventMap {
23235
23235
  */
23236
23236
  interface PaymentResponse extends EventTarget {
23237
23237
  /**
23238
- * 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.
23238
+ * 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.
23239
23239
  *
23240
23240
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/details)
23241
23241
  */
@@ -23255,7 +23255,7 @@ interface PaymentResponse extends EventTarget {
23255
23255
  */
23256
23256
  readonly payerEmail: string | null;
23257
23257
  /**
23258
- * 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.
23258
+ * The **`payerName`** read-only property of the PaymentResponse interface returns the name supplied by the user.
23259
23259
  *
23260
23260
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)
23261
23261
  */
@@ -23267,7 +23267,7 @@ interface PaymentResponse extends EventTarget {
23267
23267
  */
23268
23268
  readonly payerPhone: string | null;
23269
23269
  /**
23270
- * The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.
23270
+ * The **`requestId`** read-only property of the PaymentResponse interface returns the free-form identifier supplied by the `PaymentResponse()` constructor by details.id.
23271
23271
  *
23272
23272
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/requestId)
23273
23273
  */
@@ -23285,7 +23285,7 @@ interface PaymentResponse extends EventTarget {
23285
23285
  */
23286
23286
  readonly shippingOption: string | null;
23287
23287
  /**
23288
- * The PaymentRequest method **`complete()`** of the Payment Request API notifies the user interface to be closed.
23288
+ * 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.
23289
23289
  *
23290
23290
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/complete)
23291
23291
  */
@@ -23871,7 +23871,7 @@ interface PerformanceResourceTiming extends PerformanceEntry {
23871
23871
  */
23872
23872
  readonly transferSize: number;
23873
23873
  /**
23874
- * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a The `workerStart` property can have the following values: - A DOMHighResTimeStamp.
23874
+ * 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.
23875
23875
  *
23876
23876
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/workerStart)
23877
23877
  */
@@ -23962,7 +23962,7 @@ interface PerformanceTiming {
23962
23962
  */
23963
23963
  readonly domContentLoadedEventEnd: number;
23964
23964
  /**
23965
- * 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.
23965
+ * 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.
23966
23966
  * @deprecated
23967
23967
  *
23968
23968
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domContentLoadedEventStart)
@@ -23976,7 +23976,7 @@ interface PerformanceTiming {
23976
23976
  */
23977
23977
  readonly domInteractive: number;
23978
23978
  /**
23979
- * 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.
23979
+ * 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.
23980
23980
  * @deprecated
23981
23981
  *
23982
23982
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domLoading)
@@ -24127,7 +24127,7 @@ interface PermissionStatus extends EventTarget {
24127
24127
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/change_event) */
24128
24128
  onchange: ((this: PermissionStatus, ev: Event) => any) | null;
24129
24129
  /**
24130
- * The **`state`** read-only property of the This property returns one of `'granted'`, `'denied'`, or `'prompt'`.
24130
+ * The **`state`** read-only property of the PermissionStatus interface returns the state of a requested permission.
24131
24131
  *
24132
24132
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)
24133
24133
  */
@@ -24144,7 +24144,7 @@ declare var PermissionStatus: {
24144
24144
  };
24145
24145
 
24146
24146
  /**
24147
- * 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.
24147
+ * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions
24148
24148
  *
24149
24149
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)
24150
24150
  */
@@ -24302,13 +24302,13 @@ interface PointerEvent extends MouseEvent {
24302
24302
  */
24303
24303
  readonly azimuthAngle: number;
24304
24304
  /**
24305
- * The **`height`** read-only property of the geometry, along the y-axis (in CSS pixels).
24305
+ * 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).
24306
24306
  *
24307
24307
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/height)
24308
24308
  */
24309
24309
  readonly height: number;
24310
24310
  /**
24311
- * The **`isPrimary`** read-only property of the created the event is the _primary_ pointer.
24311
+ * The **`isPrimary`** read-only property of the PointerEvent interface indicates whether or not the pointer device that created the event is the _primary_ pointer.
24312
24312
  *
24313
24313
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/isPrimary)
24314
24314
  */
@@ -24320,25 +24320,25 @@ interface PointerEvent extends MouseEvent {
24320
24320
  */
24321
24321
  readonly persistentDeviceId: number;
24322
24322
  /**
24323
- * The **`pointerId`** read-only property of the event.
24323
+ * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
24324
24324
  *
24325
24325
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
24326
24326
  */
24327
24327
  readonly pointerId: number;
24328
24328
  /**
24329
- * The **`pointerType`** read-only property of the that caused a given pointer event.
24329
+ * The **`pointerType`** read-only property of the PointerEvent interface indicates the device type (mouse, pen, or touch) that caused a given pointer event.
24330
24330
  *
24331
24331
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerType)
24332
24332
  */
24333
24333
  readonly pointerType: string;
24334
24334
  /**
24335
- * The **`pressure`** read-only property of the input.
24335
+ * The **`pressure`** read-only property of the PointerEvent interface indicates the normalized pressure of the pointer input.
24336
24336
  *
24337
24337
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pressure)
24338
24338
  */
24339
24339
  readonly pressure: number;
24340
24340
  /**
24341
- * The **`tangentialPressure`** read-only property of the the pointer input (also known as barrel pressure or cylinder stress).
24341
+ * 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).
24342
24342
  *
24343
24343
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tangentialPressure)
24344
24344
  */
@@ -24356,13 +24356,13 @@ interface PointerEvent extends MouseEvent {
24356
24356
  */
24357
24357
  readonly tiltY: number;
24358
24358
  /**
24359
- * The **`twist`** read-only property of the (e.g., pen stylus) around its major axis, in degrees.
24359
+ * 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.
24360
24360
  *
24361
24361
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/twist)
24362
24362
  */
24363
24363
  readonly twist: number;
24364
24364
  /**
24365
- * The **`width`** read-only property of the geometry along the x-axis, measured in CSS pixels.
24365
+ * 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.
24366
24366
  *
24367
24367
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/width)
24368
24368
  */
@@ -24446,7 +24446,7 @@ declare var ProcessingInstruction: {
24446
24446
  */
24447
24447
  interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
24448
24448
  /**
24449
- * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the A boolean.
24449
+ * 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.
24450
24450
  *
24451
24451
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/lengthComputable)
24452
24452
  */
@@ -24478,7 +24478,7 @@ declare var ProgressEvent: {
24478
24478
  */
24479
24479
  interface PromiseRejectionEvent extends Event {
24480
24480
  /**
24481
- * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected.
24481
+ * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript Promise which was rejected.
24482
24482
  *
24483
24483
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise)
24484
24484
  */
@@ -24510,13 +24510,13 @@ interface PublicKeyCredential extends Credential {
24510
24510
  */
24511
24511
  readonly authenticatorAttachment: string | null;
24512
24512
  /**
24513
- * The **`rawId`** read-only property of the containing the identifier of the credentials.
24513
+ * The **`rawId`** read-only property of the PublicKeyCredential interface is an ArrayBuffer object containing the identifier of the credentials.
24514
24514
  *
24515
24515
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId)
24516
24516
  */
24517
24517
  readonly rawId: ArrayBuffer;
24518
24518
  /**
24519
- * The **`response`** read-only property of the object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
24519
+ * 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.
24520
24520
  *
24521
24521
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/response)
24522
24522
  */
@@ -24602,7 +24602,7 @@ interface PushManager {
24602
24602
  */
24603
24603
  getSubscription(): Promise<PushSubscription | null>;
24604
24604
  /**
24605
- * The **`permissionState()`** method of the string indicating the permission state of the push manager.
24605
+ * The **`permissionState()`** method of the PushManager interface returns a Promise that resolves to a string indicating the permission state of the push manager.
24606
24606
  *
24607
24607
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/permissionState)
24608
24608
  */
@@ -24634,13 +24634,13 @@ declare var PushManager: {
24634
24634
  */
24635
24635
  interface PushSubscription {
24636
24636
  /**
24637
- * The **`endpoint`** read-only property of the the endpoint associated with the push subscription.
24637
+ * The **`endpoint`** read-only property of the PushSubscription interface returns a string containing the endpoint associated with the push subscription.
24638
24638
  *
24639
24639
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/endpoint)
24640
24640
  */
24641
24641
  readonly endpoint: string;
24642
24642
  /**
24643
- * The **`expirationTime`** read-only property of the of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
24643
+ * 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.
24644
24644
  *
24645
24645
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/expirationTime)
24646
24646
  */
@@ -24803,7 +24803,7 @@ interface RTCDataChannelEventMap {
24803
24803
  */
24804
24804
  interface RTCDataChannel extends EventTarget {
24805
24805
  /**
24806
- * The property **`binaryType`** on the the type of object which should be used to represent binary data received on the RTCDataChannel.
24806
+ * 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.
24807
24807
  *
24808
24808
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/binaryType)
24809
24809
  */
@@ -24845,7 +24845,7 @@ interface RTCDataChannel extends EventTarget {
24845
24845
  */
24846
24846
  readonly maxRetransmits: number | null;
24847
24847
  /**
24848
- * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the (`true`) or by the WebRTC layer (`false`).
24848
+ * 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`).
24849
24849
  *
24850
24850
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/negotiated)
24851
24851
  */
@@ -24881,13 +24881,13 @@ interface RTCDataChannel extends EventTarget {
24881
24881
  */
24882
24882
  readonly readyState: RTCDataChannelState;
24883
24883
  /**
24884
- * The **`RTCDataChannel.close()`** method closes the closure of the channel.
24884
+ * The **`RTCDataChannel.close()`** method closes the RTCDataChannel.
24885
24885
  *
24886
24886
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close)
24887
24887
  */
24888
24888
  close(): void;
24889
24889
  /**
24890
- * The **`send()`** method of the remote peer.
24890
+ * The **`send()`** method of the RTCDataChannel interface sends data across the data channel to the remote peer.
24891
24891
  *
24892
24892
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/send)
24893
24893
  */
@@ -24946,7 +24946,7 @@ interface RTCDtlsTransport extends EventTarget {
24946
24946
  onerror: ((this: RTCDtlsTransport, ev: RTCErrorEvent) => any) | null;
24947
24947
  onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
24948
24948
  /**
24949
- * The **`state`** read-only property of the Datagram Transport Layer Security (**DTLS**) transport state.
24949
+ * The **`state`** read-only property of the RTCDtlsTransport interface provides information which describes a Datagram Transport Layer Security (**DTLS**) transport state.
24950
24950
  *
24951
24951
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state)
24952
24952
  */
@@ -25042,19 +25042,19 @@ interface RTCError extends DOMException {
25042
25042
  */
25043
25043
  readonly receivedAlert: number | null;
25044
25044
  /**
25045
- * The read-only **`sctpCauseCode`** property in an why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
25045
+ * 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.
25046
25046
  *
25047
25047
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sctpCauseCode)
25048
25048
  */
25049
25049
  readonly sctpCauseCode: number | null;
25050
25050
  /**
25051
- * 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.
25051
+ * The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the SDP at which a syntax error occurred while parsing it.
25052
25052
  *
25053
25053
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sdpLineNumber)
25054
25054
  */
25055
25055
  readonly sdpLineNumber: number | null;
25056
25056
  /**
25057
- * The read-only **`sentAlert`** property in an while sending data to the remote peer, if the error represents an outbound DTLS error.
25057
+ * 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.
25058
25058
  *
25059
25059
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sentAlert)
25060
25060
  */
@@ -25192,7 +25192,7 @@ declare var RTCIceCandidate: {
25192
25192
  interface RTCIceCandidatePair {
25193
25193
  /** The **`local`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection. */
25194
25194
  local: RTCIceCandidate;
25195
- /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the viable WebRTC connection. */
25195
+ /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate describing the configuration of the remote end of a viable WebRTC connection. */
25196
25196
  remote: RTCIceCandidate;
25197
25197
  }
25198
25198
 
@@ -25280,7 +25280,7 @@ interface RTCPeerConnection extends EventTarget {
25280
25280
  */
25281
25281
  readonly currentLocalDescription: RTCSessionDescription | null;
25282
25282
  /**
25283
- * 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.
25283
+ * 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.
25284
25284
  *
25285
25285
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/currentRemoteDescription)
25286
25286
  */
@@ -25510,7 +25510,7 @@ declare var RTCPeerConnectionIceErrorEvent: {
25510
25510
  */
25511
25511
  interface RTCPeerConnectionIceEvent extends Event {
25512
25512
  /**
25513
- * 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.
25513
+ * The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the RTCIceCandidate associated with the event.
25514
25514
  *
25515
25515
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceEvent/candidate)
25516
25516
  */
@@ -25535,7 +25535,7 @@ interface RTCRtpReceiver {
25535
25535
  */
25536
25536
  jitterBufferTarget: DOMHighResTimeStamp | null;
25537
25537
  /**
25538
- * The **`track`** read-only property of the associated with the current RTCRtpReceiver instance.
25538
+ * The **`track`** read-only property of the RTCRtpReceiver interface returns the MediaStreamTrack associated with the current RTCRtpReceiver instance.
25539
25539
  *
25540
25540
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track)
25541
25541
  */
@@ -25547,7 +25547,7 @@ interface RTCRtpReceiver {
25547
25547
  */
25548
25548
  transform: RTCRtpTransform | null;
25549
25549
  /**
25550
- * 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.
25550
+ * 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.
25551
25551
  *
25552
25552
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport)
25553
25553
  */
@@ -25609,7 +25609,7 @@ declare var RTCRtpScriptTransform: {
25609
25609
  */
25610
25610
  interface RTCRtpSender {
25611
25611
  /**
25612
- * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a over the RTCPeerConnection.
25612
+ * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a RTCDTMFSender object which can be used to send DTMF tones over the RTCPeerConnection.
25613
25613
  *
25614
25614
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/dtmf)
25615
25615
  */
@@ -25627,7 +25627,7 @@ interface RTCRtpSender {
25627
25627
  */
25628
25628
  transform: RTCRtpTransform | null;
25629
25629
  /**
25630
- * 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.
25630
+ * 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.
25631
25631
  *
25632
25632
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport)
25633
25633
  */
@@ -25700,13 +25700,13 @@ interface RTCRtpTransceiver {
25700
25700
  */
25701
25701
  readonly mid: string | null;
25702
25702
  /**
25703
- * The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the data for the transceiver's stream.
25703
+ * 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.
25704
25704
  *
25705
25705
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/receiver)
25706
25706
  */
25707
25707
  readonly receiver: RTCRtpReceiver;
25708
25708
  /**
25709
- * The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the for the transceiver's stream.
25709
+ * 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.
25710
25710
  *
25711
25711
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/sender)
25712
25712
  */
@@ -25718,7 +25718,7 @@ interface RTCRtpTransceiver {
25718
25718
  */
25719
25719
  setCodecPreferences(codecs: RTCRtpCodec[]): void;
25720
25720
  /**
25721
- * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and ```js-nolint stop() ``` None.
25721
+ * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and RTCRtpReceiver.
25722
25722
  *
25723
25723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/stop)
25724
25724
  */
@@ -25796,7 +25796,7 @@ interface RTCSessionDescription {
25796
25796
  */
25797
25797
  readonly type: RTCSdpType;
25798
25798
  /**
25799
- * The **`RTCSessionDescription.toJSON()`** method generates a ```js-nolint toJSON() ``` None.
25799
+ * The **`RTCSessionDescription.toJSON()`** method generates a JSON description of the object.
25800
25800
  *
25801
25801
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/toJSON)
25802
25802
  */
@@ -25829,25 +25829,25 @@ declare var RTCStatsReport: {
25829
25829
  */
25830
25830
  interface RTCTrackEvent extends Event {
25831
25831
  /**
25832
- * 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`.
25832
+ * 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.
25833
25833
  *
25834
25834
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/receiver)
25835
25835
  */
25836
25836
  readonly receiver: RTCRtpReceiver;
25837
25837
  /**
25838
- * The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of track being added to the RTCPeerConnection.
25838
+ * 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.
25839
25839
  *
25840
25840
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/streams)
25841
25841
  */
25842
25842
  readonly streams: ReadonlyArray<MediaStream>;
25843
25843
  /**
25844
- * The
25844
+ * The WebRTC API interface RTCTrackEvent's read-only **`track`** property specifies the MediaStreamTrack that has been added to the RTCPeerConnection.
25845
25845
  *
25846
25846
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/track)
25847
25847
  */
25848
25848
  readonly track: MediaStreamTrack;
25849
25849
  /**
25850
- * 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`.
25850
+ * The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the RTCRtpTransceiver affiliated with the event's RTCTrackEvent.track.
25851
25851
  *
25852
25852
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/transceiver)
25853
25853
  */
@@ -25897,13 +25897,13 @@ interface Range extends AbstractRange {
25897
25897
  */
25898
25898
  cloneContents(): DocumentFragment;
25899
25899
  /**
25900
- * The **`Range.cloneRange()`** method returns a The returned clone is copied by value, not reference, so a change in either ```js-nolint cloneRange() ``` None.
25900
+ * The **`Range.cloneRange()`** method returns a Range object with boundary points identical to the cloned Range.
25901
25901
  *
25902
25902
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/cloneRange)
25903
25903
  */
25904
25904
  cloneRange(): Range;
25905
25905
  /**
25906
- * 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.
25906
+ * The **`collapse()`** method of the Range interface collapses the Range to one of its boundary points.
25907
25907
  *
25908
25908
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/collapse)
25909
25909
  */
@@ -25921,7 +25921,7 @@ interface Range extends AbstractRange {
25921
25921
  */
25922
25922
  comparePoint(node: Node, offset: number): number;
25923
25923
  /**
25924
- * 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.
25924
+ * 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.
25925
25925
  *
25926
25926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/createContextualFragment)
25927
25927
  */
@@ -25975,7 +25975,7 @@ interface Range extends AbstractRange {
25975
25975
  */
25976
25976
  isPointInRange(node: Node, offset: number): boolean;
25977
25977
  /**
25978
- * The **`Range.selectNode()`** method sets the the parent of the _referenceNode_.
25978
+ * The **`Range.selectNode()`** method sets the Range to contain the Node and its contents.
25979
25979
  *
25980
25980
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/selectNode)
25981
25981
  */
@@ -25993,7 +25993,7 @@ interface Range extends AbstractRange {
25993
25993
  */
25994
25994
  setEnd(node: Node, offset: number): void;
25995
25995
  /**
25996
- * 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`.
25996
+ * The **`Range.setEndAfter()`** method sets the end position of a Range relative to another Node.
25997
25997
  *
25998
25998
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEndAfter)
25999
25999
  */
@@ -26005,7 +26005,7 @@ interface Range extends AbstractRange {
26005
26005
  */
26006
26006
  setEndBefore(node: Node): void;
26007
26007
  /**
26008
- * 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`.
26008
+ * The **`Range.setStart()`** method sets the start position of a Range.
26009
26009
  *
26010
26010
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStart)
26011
26011
  */
@@ -26126,7 +26126,7 @@ interface ReadableStream<R = any> {
26126
26126
  */
26127
26127
  pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;
26128
26128
  /**
26129
- * The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.
26129
+ * 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.
26130
26130
  *
26131
26131
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee)
26132
26132
  */
@@ -26203,7 +26203,7 @@ declare var ReadableStreamBYOBRequest: {
26203
26203
  */
26204
26204
  interface ReadableStreamDefaultController<R = any> {
26205
26205
  /**
26206
- * The **`desiredSize`** read-only property of the required to fill the stream's internal queue.
26206
+ * The **`desiredSize`** read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream's internal queue.
26207
26207
  *
26208
26208
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize)
26209
26209
  */
@@ -26215,13 +26215,13 @@ interface ReadableStreamDefaultController<R = any> {
26215
26215
  */
26216
26216
  close(): void;
26217
26217
  /**
26218
- * The **`enqueue()`** method of the ```js-nolint enqueue(chunk) ``` - `chunk` - : The chunk to enqueue.
26218
+ * The **`enqueue()`** method of the ReadableStreamDefaultController interface enqueues a given chunk in the associated stream.
26219
26219
  *
26220
26220
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue)
26221
26221
  */
26222
26222
  enqueue(chunk?: R): void;
26223
26223
  /**
26224
- * The **`error()`** method of the with the associated stream to error.
26224
+ * The **`error()`** method of the ReadableStreamDefaultController interface causes any future interactions with the associated stream to error.
26225
26225
  *
26226
26226
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error)
26227
26227
  */
@@ -26325,19 +26325,19 @@ declare var RemotePlayback: {
26325
26325
  */
26326
26326
  interface ReportingObserver {
26327
26327
  /**
26328
- * The **`disconnect()`** method of the previously started observing from collecting reports.
26328
+ * The **`disconnect()`** method of the ReportingObserver interface stops a reporting observer that had previously started observing from collecting reports.
26329
26329
  *
26330
26330
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect)
26331
26331
  */
26332
26332
  disconnect(): void;
26333
26333
  /**
26334
- * The **`observe()`** method of the collecting reports in its report queue.
26334
+ * The **`observe()`** method of the ReportingObserver interface instructs a reporting observer to start collecting reports in its report queue.
26335
26335
  *
26336
26336
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/observe)
26337
26337
  */
26338
26338
  observe(): void;
26339
26339
  /**
26340
- * The **`takeRecords()`** method of the in the observer's report queue, and empties the queue.
26340
+ * The **`takeRecords()`** method of the ReportingObserver interface returns the current list of reports contained in the observer's report queue, and empties the queue.
26341
26341
  *
26342
26342
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/takeRecords)
26343
26343
  */
@@ -26374,7 +26374,7 @@ interface Request extends Body {
26374
26374
  */
26375
26375
  readonly destination: RequestDestination;
26376
26376
  /**
26377
- * The **`headers`** read-only property of the with the request.
26377
+ * The **`headers`** read-only property of the Request interface contains the Headers object associated with the request.
26378
26378
  *
26379
26379
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers)
26380
26380
  */
@@ -26392,7 +26392,7 @@ interface Request extends Body {
26392
26392
  */
26393
26393
  readonly keepalive: boolean;
26394
26394
  /**
26395
- * The **`method`** read-only property of the `POST`, etc.) A String indicating the method of the request.
26395
+ * The **`method`** read-only property of the Request interface contains the request's method (`GET`, `POST`, etc.)
26396
26396
  *
26397
26397
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method)
26398
26398
  */
@@ -26410,13 +26410,13 @@ interface Request extends Body {
26410
26410
  */
26411
26411
  readonly redirect: RequestRedirect;
26412
26412
  /**
26413
- * The **`referrer`** read-only property of the Request.
26413
+ * The **`referrer`** read-only property of the Request interface is set by the user agent to be the referrer of the Request.
26414
26414
  *
26415
26415
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrer)
26416
26416
  */
26417
26417
  readonly referrer: string;
26418
26418
  /**
26419
- * The **`referrerPolicy`** read-only property of the referrer information, sent in the Referer header, should be included with the request.
26419
+ * 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.
26420
26420
  *
26421
26421
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrerPolicy)
26422
26422
  */
@@ -26453,19 +26453,19 @@ declare var Request: {
26453
26453
  */
26454
26454
  interface ResizeObserver {
26455
26455
  /**
26456
- * The **`disconnect()`** method of the or SVGElement targets.
26456
+ * The **`disconnect()`** method of the ResizeObserver interface unobserves all observed Element or SVGElement targets.
26457
26457
  *
26458
26458
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/disconnect)
26459
26459
  */
26460
26460
  disconnect(): void;
26461
26461
  /**
26462
- * The **`observe()`** method of the ```js-nolint observe(target) observe(target, options) ``` - `target` - : A reference to an Element or SVGElement to be observed.
26462
+ * The **`observe()`** method of the ResizeObserver interface starts observing the specified Element or SVGElement.
26463
26463
  *
26464
26464
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/observe)
26465
26465
  */
26466
26466
  observe(target: Element, options?: ResizeObserverOptions): void;
26467
26467
  /**
26468
- * The **`unobserve()`** method of the ```js-nolint unobserve(target) ``` - `target` - : A reference to an Element or SVGElement to be unobserved.
26468
+ * The **`unobserve()`** method of the ResizeObserver interface ends the observing of a specified Element or SVGElement.
26469
26469
  *
26470
26470
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/unobserve)
26471
26471
  */
@@ -26496,7 +26496,7 @@ interface ResizeObserverEntry {
26496
26496
  */
26497
26497
  readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
26498
26498
  /**
26499
- * The `contentRect` read-only property of the object containing the new size of the observed element when the callback is run.
26499
+ * 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.
26500
26500
  *
26501
26501
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect)
26502
26502
  */
@@ -26508,7 +26508,7 @@ interface ResizeObserverEntry {
26508
26508
  */
26509
26509
  readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
26510
26510
  /**
26511
- * The **`target`** read-only property of the An Element or SVGElement representing the element being observed.
26511
+ * The **`target`** read-only property of the ResizeObserverEntry interface returns a reference to the Element or SVGElement that is being observed.
26512
26512
  *
26513
26513
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target)
26514
26514
  */
@@ -26552,7 +26552,7 @@ declare var ResizeObserverSize: {
26552
26552
  */
26553
26553
  interface Response extends Body {
26554
26554
  /**
26555
- * The **`headers`** read-only property of the with the response.
26555
+ * The **`headers`** read-only property of the Response interface contains the Headers object associated with the response.
26556
26556
  *
26557
26557
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers)
26558
26558
  */
@@ -27138,7 +27138,7 @@ declare var SVGAnimationElement: {
27138
27138
  */
27139
27139
  interface SVGCircleElement extends SVGGeometryElement {
27140
27140
  /**
27141
- * 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`.
27141
+ * 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.<
27142
27142
  *
27143
27143
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/cx)
27144
27144
  */
@@ -28518,7 +28518,7 @@ declare var SVGGElement: {
28518
28518
  */
28519
28519
  interface SVGGeometryElement extends SVGGraphicsElement {
28520
28520
  /**
28521
- * The **`SVGGeometryElement.pathLength`** property reflects the A number.
28521
+ * The **`SVGGeometryElement.pathLength`** property reflects the pathLength attribute and returns the total length of the path, in user units.
28522
28522
  *
28523
28523
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/pathLength)
28524
28524
  */
@@ -28655,31 +28655,31 @@ interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
28655
28655
  */
28656
28656
  crossOrigin: string | null;
28657
28657
  /**
28658
- * The **`height`** read-only property of the corresponding to the height attribute of the given An SVGAnimatedLength.
28658
+ * The **`height`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the height attribute of the given image element.
28659
28659
  *
28660
28660
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height)
28661
28661
  */
28662
28662
  readonly height: SVGAnimatedLength;
28663
28663
  /**
28664
- * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an element.
28664
+ * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an SVGAnimatedPreserveAspectRatio corresponding to the preserveAspectRatio attribute of the given image element.
28665
28665
  *
28666
28666
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio)
28667
28667
  */
28668
28668
  readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;
28669
28669
  /**
28670
- * The **`width`** read-only property of the corresponding to the width attribute of the given image element.
28670
+ * The **`width`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the width attribute of the given image element.
28671
28671
  *
28672
28672
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/width)
28673
28673
  */
28674
28674
  readonly width: SVGAnimatedLength;
28675
28675
  /**
28676
- * The **`x`** read-only property of the corresponding to the x attribute of the given image element.
28676
+ * The **`x`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the x attribute of the given image element.
28677
28677
  *
28678
28678
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/x)
28679
28679
  */
28680
28680
  readonly x: SVGAnimatedLength;
28681
28681
  /**
28682
- * The **`y`** read-only property of the corresponding to the y attribute of the given image element.
28682
+ * The **`y`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the y attribute of the given image element.
28683
28683
  *
28684
28684
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/y)
28685
28685
  */
@@ -30321,7 +30321,7 @@ declare var SVGUnitTypes: {
30321
30321
  };
30322
30322
 
30323
30323
  /**
30324
- * The **`SVGUseElement`** interface corresponds to the use element.
30324
+ * ## SVG use DOM interface
30325
30325
  *
30326
30326
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
30327
30327
  */
@@ -30409,7 +30409,7 @@ interface Screen {
30409
30409
  */
30410
30410
  readonly height: number;
30411
30411
  /**
30412
- * The **`orientation`** read-only property of the An instance of ScreenOrientation representing the orientation of the screen.
30412
+ * The **`orientation`** read-only property of the Screen interface returns the current orientation of the screen.
30413
30413
  *
30414
30414
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/orientation)
30415
30415
  */
@@ -30444,7 +30444,7 @@ interface ScreenOrientationEventMap {
30444
30444
  */
30445
30445
  interface ScreenOrientation extends EventTarget {
30446
30446
  /**
30447
- * The **`angle`** read-only property of the angle.
30447
+ * The **`angle`** read-only property of the ScreenOrientation interface returns the document's current orientation angle.
30448
30448
  *
30449
30449
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle)
30450
30450
  */
@@ -30452,13 +30452,13 @@ interface ScreenOrientation extends EventTarget {
30452
30452
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
30453
30453
  onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
30454
30454
  /**
30455
- * The **`type`** read-only property of the type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
30455
+ * 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`.
30456
30456
  *
30457
30457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
30458
30458
  */
30459
30459
  readonly type: OrientationType;
30460
30460
  /**
30461
- * The **`unlock()`** method of the document from its default orientation.
30461
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30462
30462
  *
30463
30463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30464
30464
  */
@@ -30517,13 +30517,13 @@ declare var ScriptProcessorNode: {
30517
30517
  */
30518
30518
  interface ScrollTimeline extends AnimationTimeline {
30519
30519
  /**
30520
- * The **`axis`** read-only property of the An enumerated value.
30520
+ * 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.
30521
30521
  *
30522
30522
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/axis)
30523
30523
  */
30524
30524
  readonly axis: ScrollAxis;
30525
30525
  /**
30526
- * The **`source`** read-only property of the An Element.
30526
+ * 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.
30527
30527
  *
30528
30528
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/source)
30529
30529
  */
@@ -30633,7 +30633,7 @@ interface Selection {
30633
30633
  */
30634
30634
  readonly anchorNode: Node | null;
30635
30635
  /**
30636
- * 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.
30636
+ * 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.
30637
30637
  *
30638
30638
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset)
30639
30639
  */
@@ -30651,7 +30651,7 @@ interface Selection {
30651
30651
  */
30652
30652
  readonly focusNode: Node | null;
30653
30653
  /**
30654
- * 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.
30654
+ * 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.
30655
30655
  *
30656
30656
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusOffset)
30657
30657
  */
@@ -30669,13 +30669,13 @@ interface Selection {
30669
30669
  */
30670
30670
  readonly rangeCount: number;
30671
30671
  /**
30672
- * The **`type`** read-only property of the type of the current selection.
30672
+ * The **`type`** read-only property of the Selection interface returns a string describing the type of the current selection.
30673
30673
  *
30674
30674
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/type)
30675
30675
  */
30676
30676
  readonly type: string;
30677
30677
  /**
30678
- * The **`Selection.addRange()`** method adds a ```js-nolint addRange(range) ``` - `range` - : A Range object that will be added to the Selection.
30678
+ * The **`Selection.addRange()`** method adds a Range to a Selection.
30679
30679
  *
30680
30680
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/addRange)
30681
30681
  */
@@ -30705,7 +30705,7 @@ interface Selection {
30705
30705
  */
30706
30706
  containsNode(node: Node, allowPartialContainment?: boolean): boolean;
30707
30707
  /**
30708
- * The **`deleteFromDocument()`** method of the ```js-nolint deleteFromDocument() ``` None.
30708
+ * The **`deleteFromDocument()`** method of the Selection interface invokes the Range.deleteContents() method on the selected Range.
30709
30709
  *
30710
30710
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/deleteFromDocument)
30711
30711
  */
@@ -30798,7 +30798,7 @@ interface ServiceWorker extends EventTarget, AbstractWorker {
30798
30798
  */
30799
30799
  readonly scriptURL: string;
30800
30800
  /**
30801
- * The **`state`** read-only property of the of the service worker.
30801
+ * The **`state`** read-only property of the ServiceWorker interface returns a string representing the current state of the service worker.
30802
30802
  *
30803
30803
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state)
30804
30804
  */
@@ -30853,13 +30853,13 @@ interface ServiceWorkerContainer extends EventTarget {
30853
30853
  */
30854
30854
  readonly ready: Promise<ServiceWorkerRegistration>;
30855
30855
  /**
30856
- * The **`getRegistration()`** method of the client URL.
30856
+ * The **`getRegistration()`** method of the ServiceWorkerContainer interface gets a ServiceWorkerRegistration object whose scope URL matches the provided client URL.
30857
30857
  *
30858
30858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistration)
30859
30859
  */
30860
30860
  getRegistration(clientURL?: string | URL): Promise<ServiceWorkerRegistration | undefined>;
30861
30861
  /**
30862
- * The **`getRegistrations()`** method of the `ServiceWorkerContainer`, in an array.
30862
+ * The **`getRegistrations()`** method of the ServiceWorkerContainer interface gets all ServiceWorkerRegistrations associated with a `ServiceWorkerContainer`, in an array.
30863
30863
  *
30864
30864
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistrations)
30865
30865
  */
@@ -30899,7 +30899,7 @@ interface ServiceWorkerRegistrationEventMap {
30899
30899
  */
30900
30900
  interface ServiceWorkerRegistration extends EventTarget {
30901
30901
  /**
30902
- * The **`active`** read-only property of the This property is initially set to `null`.
30902
+ * The **`active`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `activating` or `activated`.
30903
30903
  *
30904
30904
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active)
30905
30905
  */
@@ -30911,7 +30911,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30911
30911
  */
30912
30912
  readonly cookies: CookieStoreManager;
30913
30913
  /**
30914
- * The **`installing`** read-only property of the initially set to `null`.
30914
+ * The **`installing`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installing`.
30915
30915
  *
30916
30916
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing)
30917
30917
  */
@@ -30925,7 +30925,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30925
30925
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updatefound_event) */
30926
30926
  onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;
30927
30927
  /**
30928
- * The **`pushManager`** read-only property of the support for subscribing, getting an active subscription, and accessing push permission status.
30928
+ * 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.
30929
30929
  *
30930
30930
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/pushManager)
30931
30931
  */
@@ -30943,7 +30943,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30943
30943
  */
30944
30944
  readonly updateViaCache: ServiceWorkerUpdateViaCache;
30945
30945
  /**
30946
- * The **`waiting`** read-only property of the set to `null`.
30946
+ * The **`waiting`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installed`.
30947
30947
  *
30948
30948
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/waiting)
30949
30949
  */
@@ -30955,19 +30955,19 @@ interface ServiceWorkerRegistration extends EventTarget {
30955
30955
  */
30956
30956
  getNotifications(filter?: GetNotificationOptions): Promise<Notification[]>;
30957
30957
  /**
30958
- * The **`showNotification()`** method of the service worker.
30958
+ * The **`showNotification()`** method of the ServiceWorkerRegistration interface creates a notification on an active service worker.
30959
30959
  *
30960
30960
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/showNotification)
30961
30961
  */
30962
30962
  showNotification(title: string, options?: NotificationOptions): Promise<void>;
30963
30963
  /**
30964
- * The **`unregister()`** method of the registration and returns a Promise.
30964
+ * The **`unregister()`** method of the ServiceWorkerRegistration interface unregisters the service worker registration and returns a Promise.
30965
30965
  *
30966
30966
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister)
30967
30967
  */
30968
30968
  unregister(): Promise<boolean>;
30969
30969
  /**
30970
- * The **`update()`** method of the worker.
30970
+ * The **`update()`** method of the ServiceWorkerRegistration interface attempts to update the service worker.
30971
30971
  *
30972
30972
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update)
30973
30973
  */
@@ -31102,19 +31102,19 @@ interface SourceBufferEventMap {
31102
31102
  */
31103
31103
  interface SourceBuffer extends EventTarget {
31104
31104
  /**
31105
- * The **`appendWindowEnd`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31105
+ * 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`.
31106
31106
  *
31107
31107
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowEnd)
31108
31108
  */
31109
31109
  appendWindowEnd: number;
31110
31110
  /**
31111
- * The **`appendWindowStart`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31111
+ * 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`.
31112
31112
  *
31113
31113
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowStart)
31114
31114
  */
31115
31115
  appendWindowStart: number;
31116
31116
  /**
31117
- * The **`buffered`** read-only property of the buffered in the `SourceBuffer` as a normalized TimeRanges object.
31117
+ * 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.
31118
31118
  *
31119
31119
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/buffered)
31120
31120
  */
@@ -31131,13 +31131,13 @@ interface SourceBuffer extends EventTarget {
31131
31131
  onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
31132
31132
  onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
31133
31133
  /**
31134
- * The **`timestampOffset`** property of the media segments that are appended to the `SourceBuffer`.
31134
+ * The **`timestampOffset`** property of the SourceBuffer interface controls the offset applied to timestamps inside media segments that are appended to the `SourceBuffer`.
31135
31135
  *
31136
31136
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset)
31137
31137
  */
31138
31138
  timestampOffset: number;
31139
31139
  /**
31140
- * The **`updating`** read-only property of the currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
31140
+ * 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.
31141
31141
  *
31142
31142
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updating)
31143
31143
  */
@@ -31149,13 +31149,13 @@ interface SourceBuffer extends EventTarget {
31149
31149
  */
31150
31150
  abort(): void;
31151
31151
  /**
31152
- * The **`appendBuffer()`** method of the to the `SourceBuffer`.
31152
+ * The **`appendBuffer()`** method of the SourceBuffer interface appends media segment data from an ArrayBuffer, a TypedArray or a DataView object to the `SourceBuffer`.
31153
31153
  *
31154
31154
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendBuffer)
31155
31155
  */
31156
31156
  appendBuffer(data: BufferSource): void;
31157
31157
  /**
31158
- * The **`changeType()`** method of the data to conform to.
31158
+ * 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.
31159
31159
  *
31160
31160
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/changeType)
31161
31161
  */
@@ -31189,7 +31189,7 @@ interface SourceBufferListEventMap {
31189
31189
  */
31190
31190
  interface SourceBufferList extends EventTarget {
31191
31191
  /**
31192
- * The **`length`** read-only property of the An unsigned long number.
31192
+ * The **`length`** read-only property of the SourceBufferList interface returns the number of SourceBuffer objects in the list.
31193
31193
  *
31194
31194
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length)
31195
31195
  */
@@ -31216,13 +31216,13 @@ declare var SourceBufferList: {
31216
31216
  */
31217
31217
  interface SpeechRecognitionAlternative {
31218
31218
  /**
31219
- * The **`confidence`** read-only property of the confident the speech recognition system is that the recognition is correct.
31219
+ * 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.
31220
31220
  *
31221
31221
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/confidence)
31222
31222
  */
31223
31223
  readonly confidence: number;
31224
31224
  /**
31225
- * The **`transcript`** read-only property of the transcript of the recognized word(s).
31225
+ * The **`transcript`** read-only property of the SpeechRecognitionResult interface returns a string containing the transcript of the recognized word(s).
31226
31226
  *
31227
31227
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/transcript)
31228
31228
  */
@@ -31242,13 +31242,13 @@ declare var SpeechRecognitionAlternative: {
31242
31242
  */
31243
31243
  interface SpeechRecognitionErrorEvent extends Event {
31244
31244
  /**
31245
- * The **`error`** read-only property of the A string naming the type of error.
31245
+ * The **`error`** read-only property of the SpeechRecognitionErrorEvent interface returns the type of error raised.
31246
31246
  *
31247
31247
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/error)
31248
31248
  */
31249
31249
  readonly error: SpeechRecognitionErrorCode;
31250
31250
  /**
31251
- * The **`message`** read-only property of the error in more detail.
31251
+ * The **`message`** read-only property of the SpeechRecognitionErrorEvent interface returns a message describing the error in more detail.
31252
31252
  *
31253
31253
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/message)
31254
31254
  */
@@ -31268,13 +31268,13 @@ declare var SpeechRecognitionErrorEvent: {
31268
31268
  */
31269
31269
  interface SpeechRecognitionEvent extends Event {
31270
31270
  /**
31271
- * The **`resultIndex`** read-only property of the the SpeechRecognitionResultList 'array' that has actually changed.
31271
+ * The **`resultIndex`** read-only property of the SpeechRecognitionEvent interface returns the lowest index value result in the SpeechRecognitionResultList 'array' that has actually changed.
31272
31272
  *
31273
31273
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/resultIndex)
31274
31274
  */
31275
31275
  readonly resultIndex: number;
31276
31276
  /**
31277
- * The **`results`** read-only property of the recognition results for the current session.
31277
+ * The **`results`** read-only property of the SpeechRecognitionEvent interface returns a SpeechRecognitionResultList object representing all the speech recognition results for the current session.
31278
31278
  *
31279
31279
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/results)
31280
31280
  */
@@ -31294,19 +31294,19 @@ declare var SpeechRecognitionEvent: {
31294
31294
  */
31295
31295
  interface SpeechRecognitionResult {
31296
31296
  /**
31297
- * 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.
31297
+ * 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.
31298
31298
  *
31299
31299
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/isFinal)
31300
31300
  */
31301
31301
  readonly isFinal: boolean;
31302
31302
  /**
31303
- * 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.
31303
+ * 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'.)
31304
31304
  *
31305
31305
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/length)
31306
31306
  */
31307
31307
  readonly length: number;
31308
31308
  /**
31309
- * The **`item`** getter of the array syntax.
31309
+ * The **`item`** getter of the SpeechRecognitionResult interface is a standard getter that allows SpeechRecognitionAlternative objects within the result to be accessed via array syntax.
31310
31310
  *
31311
31311
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/item)
31312
31312
  */
@@ -31327,13 +31327,13 @@ declare var SpeechRecognitionResult: {
31327
31327
  */
31328
31328
  interface SpeechRecognitionResultList {
31329
31329
  /**
31330
- * The **`length`** read-only property of the 'array' — the number of SpeechRecognitionResult objects in the list.
31330
+ * The **`length`** read-only property of the SpeechRecognitionResultList interface returns the length of the 'array' — the number of SpeechRecognitionResult objects in the list.
31331
31331
  *
31332
31332
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/length)
31333
31333
  */
31334
31334
  readonly length: number;
31335
31335
  /**
31336
- * The **`item`** getter of the syntax.
31336
+ * The **`item`** getter of the SpeechRecognitionResultList interface is a standard getter — it allows SpeechRecognitionResult objects in the list to be accessed via array syntax.
31337
31337
  *
31338
31338
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/item)
31339
31339
  */
@@ -31359,19 +31359,19 @@ interface SpeechSynthesis extends EventTarget {
31359
31359
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/voiceschanged_event) */
31360
31360
  onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
31361
31361
  /**
31362
- * The **`paused`** read-only property of the `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
31362
+ * 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.
31363
31363
  *
31364
31364
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/paused)
31365
31365
  */
31366
31366
  readonly paused: boolean;
31367
31367
  /**
31368
- * The **`pending`** read-only property of the `true` if the utterance queue contains as-yet-unspoken utterances.
31368
+ * 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.
31369
31369
  *
31370
31370
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/pending)
31371
31371
  */
31372
31372
  readonly pending: boolean;
31373
31373
  /**
31374
- * 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.
31374
+ * 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.
31375
31375
  *
31376
31376
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/speaking)
31377
31377
  */
@@ -31383,7 +31383,7 @@ interface SpeechSynthesis extends EventTarget {
31383
31383
  */
31384
31384
  cancel(): void;
31385
31385
  /**
31386
- * The **`getVoices()`** method of the current device.
31386
+ * The **`getVoices()`** method of the SpeechSynthesis interface returns a list of SpeechSynthesisVoice objects representing all the available voices on the current device.
31387
31387
  *
31388
31388
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/getVoices)
31389
31389
  */
@@ -31424,7 +31424,7 @@ declare var SpeechSynthesis: {
31424
31424
  */
31425
31425
  interface SpeechSynthesisErrorEvent extends SpeechSynthesisEvent {
31426
31426
  /**
31427
- * The **`error`** property of the A string containing the error reason.
31427
+ * The **`error`** property of the SpeechSynthesisErrorEvent interface returns an error code indicating what has gone wrong with a speech synthesis attempt.
31428
31428
  *
31429
31429
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisErrorEvent/error)
31430
31430
  */
@@ -31528,7 +31528,7 @@ interface SpeechSynthesisUtterance extends EventTarget {
31528
31528
  */
31529
31529
  rate: number;
31530
31530
  /**
31531
- * The **`text`** property of the The text may be provided as plain text, or a well-formed SSML document.
31531
+ * The **`text`** property of the SpeechSynthesisUtterance interface gets and sets the text that will be synthesized when the utterance is spoken.
31532
31532
  *
31533
31533
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/text)
31534
31534
  */
@@ -31563,7 +31563,7 @@ declare var SpeechSynthesisUtterance: {
31563
31563
  */
31564
31564
  interface SpeechSynthesisVoice {
31565
31565
  /**
31566
- * 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.
31566
+ * 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`.)
31567
31567
  *
31568
31568
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/default)
31569
31569
  */
@@ -31575,19 +31575,19 @@ interface SpeechSynthesisVoice {
31575
31575
  */
31576
31576
  readonly lang: string;
31577
31577
  /**
31578
- * 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.
31578
+ * 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`.)
31579
31579
  *
31580
31580
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/localService)
31581
31581
  */
31582
31582
  readonly localService: boolean;
31583
31583
  /**
31584
- * The **`name`** read-only property of the represents the voice.
31584
+ * The **`name`** read-only property of the SpeechSynthesisVoice interface returns a human-readable name that represents the voice.
31585
31585
  *
31586
31586
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/name)
31587
31587
  */
31588
31588
  readonly name: string;
31589
31589
  /**
31590
- * The **`voiceURI`** read-only property of the the speech synthesis service for this voice.
31590
+ * The **`voiceURI`** read-only property of the SpeechSynthesisVoice interface returns the type of URI and location of the speech synthesis service for this voice.
31591
31591
  *
31592
31592
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/voiceURI)
31593
31593
  */
@@ -31638,7 +31638,7 @@ declare var StereoPannerNode: {
31638
31638
  */
31639
31639
  interface Storage {
31640
31640
  /**
31641
- * The **`length`** read-only property of the `Storage` object.
31641
+ * The **`length`** read-only property of the Storage interface returns the number of data items stored in a given `Storage` object.
31642
31642
  *
31643
31643
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/length)
31644
31644
  */
@@ -31782,7 +31782,7 @@ interface StyleMedia {
31782
31782
  */
31783
31783
  interface StylePropertyMap extends StylePropertyMapReadOnly {
31784
31784
  /**
31785
- * The **`append()`** method of the `StylePropertyMap` with the given property.
31785
+ * The **`append()`** method of the StylePropertyMap interface adds the passed CSS value to the `StylePropertyMap` with the given property.
31786
31786
  *
31787
31787
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/append)
31788
31788
  */
@@ -31794,7 +31794,7 @@ interface StylePropertyMap extends StylePropertyMapReadOnly {
31794
31794
  */
31795
31795
  clear(): void;
31796
31796
  /**
31797
- * The **`delete()`** method of the property.
31797
+ * The **`delete()`** method of the StylePropertyMap interface removes the CSS declaration with the given property.
31798
31798
  *
31799
31799
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/delete)
31800
31800
  */
@@ -31819,25 +31819,25 @@ declare var StylePropertyMap: {
31819
31819
  */
31820
31820
  interface StylePropertyMapReadOnly {
31821
31821
  /**
31822
- * The **`size`** read-only property of the containing the size of the `StylePropertyMapReadOnly` object.
31822
+ * The **`size`** read-only property of the StylePropertyMapReadOnly interface returns an unsigned long integer containing the size of the `StylePropertyMapReadOnly` object.
31823
31823
  *
31824
31824
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)
31825
31825
  */
31826
31826
  readonly size: number;
31827
31827
  /**
31828
- * The **`get()`** method of the object for the first value of the specified property.
31828
+ * The **`get()`** method of the StylePropertyMapReadOnly interface returns a CSSStyleValue object for the first value of the specified property.
31829
31829
  *
31830
31830
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get)
31831
31831
  */
31832
31832
  get(property: string): undefined | CSSStyleValue;
31833
31833
  /**
31834
- * The **`getAll()`** method of the ```js-nolint getAll(property) ``` - `property` - : The name of the property to retrieve all values of.
31834
+ * The **`getAll()`** method of the StylePropertyMapReadOnly interface returns an array of CSSStyleValue objects containing the values for the provided property.
31835
31835
  *
31836
31836
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll)
31837
31837
  */
31838
31838
  getAll(property: string): CSSStyleValue[];
31839
31839
  /**
31840
- * The **`has()`** method of the property is in the `StylePropertyMapReadOnly` object.
31840
+ * The **`has()`** method of the StylePropertyMapReadOnly interface indicates whether the specified property is in the `StylePropertyMapReadOnly` object.
31841
31841
  *
31842
31842
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has)
31843
31843
  */
@@ -31857,7 +31857,7 @@ declare var StylePropertyMapReadOnly: {
31857
31857
  */
31858
31858
  interface StyleSheet {
31859
31859
  /**
31860
- * The **`disabled`** property of the applying to the document.
31860
+ * The **`disabled`** property of the StyleSheet interface determines whether the style sheet is prevented from applying to the document.
31861
31861
  *
31862
31862
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/disabled)
31863
31863
  */
@@ -31875,13 +31875,13 @@ interface StyleSheet {
31875
31875
  */
31876
31876
  readonly media: MediaList;
31877
31877
  /**
31878
- * The **`ownerNode`** property of the with the document.
31878
+ * The **`ownerNode`** property of the StyleSheet interface returns the node that associates this style sheet with the document.
31879
31879
  *
31880
31880
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/ownerNode)
31881
31881
  */
31882
31882
  readonly ownerNode: Element | ProcessingInstruction | null;
31883
31883
  /**
31884
- * The **`parentStyleSheet`** property of the the given style sheet.
31884
+ * The **`parentStyleSheet`** property of the StyleSheet interface returns the style sheet, if any, that is including the given style sheet.
31885
31885
  *
31886
31886
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/parentStyleSheet)
31887
31887
  */
@@ -31964,7 +31964,7 @@ interface SubtleCrypto {
31964
31964
  */
31965
31965
  decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;
31966
31966
  /**
31967
- * The **`deriveBits()`** method of the key.
31967
+ * The **`deriveBits()`** method of the SubtleCrypto interface can be used to derive an array of bits from a base key.
31968
31968
  *
31969
31969
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits)
31970
31970
  */
@@ -32475,7 +32475,7 @@ interface TextTrackList extends EventTarget {
32475
32475
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */
32476
32476
  onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
32477
32477
  /**
32478
- * The **TextTrackList** method **`getTrackById()`** returns the first `id` matches the specified string.
32478
+ * The **TextTrackList** method **`getTrackById()`** returns the first TextTrack object from the track list whose `id` matches the specified string.
32479
32479
  *
32480
32480
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById)
32481
32481
  */
@@ -32646,7 +32646,7 @@ interface TouchEvent extends UIEvent {
32646
32646
  */
32647
32647
  readonly altKey: boolean;
32648
32648
  /**
32649
- * 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.
32649
+ * The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
32650
32650
  *
32651
32651
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/changedTouches)
32652
32652
  */
@@ -32833,7 +32833,7 @@ declare var TransitionEvent: {
32833
32833
  */
32834
32834
  interface TreeWalker {
32835
32835
  /**
32836
- * The **`TreeWalker.currentNode`** property represents the A Node.
32836
+ * The **`TreeWalker.currentNode`** property represents the Node which the TreeWalker is currently pointing at.
32837
32837
  *
32838
32838
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/currentNode)
32839
32839
  */
@@ -32857,43 +32857,43 @@ interface TreeWalker {
32857
32857
  */
32858
32858
  readonly whatToShow: number;
32859
32859
  /**
32860
- * The **`TreeWalker.firstChild()`** method moves the current the found child.
32860
+ * The **`TreeWalker.firstChild()`** method moves the current Node to the first _visible_ child of the current node, and returns the found child.
32861
32861
  *
32862
32862
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/firstChild)
32863
32863
  */
32864
32864
  firstChild(): Node | null;
32865
32865
  /**
32866
- * The **`TreeWalker.lastChild()`** method moves the current the found child.
32866
+ * The **`TreeWalker.lastChild()`** method moves the current Node to the last _visible_ child of the current node, and returns the found child.
32867
32867
  *
32868
32868
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/lastChild)
32869
32869
  */
32870
32870
  lastChild(): Node | null;
32871
32871
  /**
32872
- * The **`TreeWalker.nextNode()`** method moves the current the found node.
32872
+ * The **`TreeWalker.nextNode()`** method moves the current Node to the next _visible_ node in the document order, and returns the found node.
32873
32873
  *
32874
32874
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextNode)
32875
32875
  */
32876
32876
  nextNode(): Node | null;
32877
32877
  /**
32878
- * The **`TreeWalker.nextSibling()`** method moves the current is no such node, it returns `null` and the current node is not changed.
32878
+ * The **`TreeWalker.nextSibling()`** method moves the current Node to its next sibling, if any, and returns the found sibling.
32879
32879
  *
32880
32880
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextSibling)
32881
32881
  */
32882
32882
  nextSibling(): Node | null;
32883
32883
  /**
32884
- * The **`TreeWalker.parentNode()`** method moves the current and returns the found node.
32884
+ * The **`TreeWalker.parentNode()`** method moves the current Node to the first _visible_ ancestor node in the document order, and returns the found node.
32885
32885
  *
32886
32886
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/parentNode)
32887
32887
  */
32888
32888
  parentNode(): Node | null;
32889
32889
  /**
32890
- * The **`TreeWalker.previousNode()`** method moves the current returns the found node.
32890
+ * The **`TreeWalker.previousNode()`** method moves the current Node to the previous _visible_ node in the document order, and returns the found node.
32891
32891
  *
32892
32892
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousNode)
32893
32893
  */
32894
32894
  previousNode(): Node | null;
32895
32895
  /**
32896
- * The **`TreeWalker.previousSibling()`** method moves the current there is no such node, it returns `null` and the current node is not changed.
32896
+ * The **`TreeWalker.previousSibling()`** method moves the current Node to its previous sibling, if any, and returns the found sibling.
32897
32897
  *
32898
32898
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousSibling)
32899
32899
  */
@@ -32918,7 +32918,7 @@ interface UIEvent extends Event {
32918
32918
  */
32919
32919
  readonly detail: number;
32920
32920
  /**
32921
- * The **`UIEvent.view`** read-only property returns the is the Window object the event happened in.
32921
+ * The **`UIEvent.view`** read-only property returns the WindowProxy object from which the event was generated.
32922
32922
  *
32923
32923
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/view)
32924
32924
  */
@@ -33012,7 +33012,7 @@ interface URL {
33012
33012
  */
33013
33013
  search: string;
33014
33014
  /**
33015
- * The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL.
33015
+ * 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.
33016
33016
  *
33017
33017
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams)
33018
33018
  */
@@ -33024,7 +33024,7 @@ interface URL {
33024
33024
  */
33025
33025
  username: string;
33026
33026
  /**
33027
- * 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.
33027
+ * 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().
33028
33028
  *
33029
33029
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON)
33030
33030
  */
@@ -33053,7 +33053,7 @@ declare var URL: {
33053
33053
  */
33054
33054
  parse(url: string | URL, base?: string | URL): URL | null;
33055
33055
  /**
33056
- * 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.
33056
+ * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling URL.createObjectURL_static.
33057
33057
  *
33058
33058
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static)
33059
33059
  */
@@ -33713,7 +33713,7 @@ interface VideoPlaybackQuality {
33713
33713
  */
33714
33714
  readonly corruptedVideoFrames: number;
33715
33715
  /**
33716
- * The read-only **`creationTime`** property on the the browsing context was created this quality sample was recorded.
33716
+ * 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.
33717
33717
  *
33718
33718
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/creationTime)
33719
33719
  */
@@ -33775,26 +33775,26 @@ declare var ViewTimeline: {
33775
33775
  */
33776
33776
  interface ViewTransition {
33777
33777
  /**
33778
- * 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.
33778
+ * 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.
33779
33779
  *
33780
33780
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished)
33781
33781
  */
33782
33782
  readonly finished: Promise<void>;
33783
33783
  /**
33784
- * The **`ready`** read-only property of the `ready` will reject if the transition cannot begin.
33784
+ * 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.
33785
33785
  *
33786
33786
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
33787
33787
  */
33788
33788
  readonly ready: Promise<void>;
33789
33789
  types: ViewTransitionTypeSet;
33790
33790
  /**
33791
- * 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.
33791
+ * 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.
33792
33792
  *
33793
33793
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone)
33794
33794
  */
33795
33795
  readonly updateCallbackDone: Promise<void>;
33796
33796
  /**
33797
- * The **`skipTransition()`** method of the ```js-nolint skipTransition() ``` None.
33797
+ * The **`skipTransition()`** method of the ViewTransition interface skips the animation part of the view transition, but doesn't skip running the associated view update.
33798
33798
  *
33799
33799
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition)
33800
33800
  */
@@ -36524,7 +36524,7 @@ interface WebSocket extends EventTarget {
36524
36524
  */
36525
36525
  readonly url: string;
36526
36526
  /**
36527
- * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing.
36527
+ * The **`WebSocket.close()`** method closes the WebSocket connection or connection attempt, if any.
36528
36528
  *
36529
36529
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close)
36530
36530
  */
@@ -36733,19 +36733,19 @@ interface WheelEvent extends MouseEvent {
36733
36733
  */
36734
36734
  readonly deltaMode: number;
36735
36735
  /**
36736
- * 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.
36736
+ * The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the WheelEvent.deltaMode unit.
36737
36737
  *
36738
36738
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaX)
36739
36739
  */
36740
36740
  readonly deltaX: number;
36741
36741
  /**
36742
- * 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.
36742
+ * The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the WheelEvent.deltaMode unit.
36743
36743
  *
36744
36744
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaY)
36745
36745
  */
36746
36746
  readonly deltaY: number;
36747
36747
  /**
36748
- * 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.
36748
+ * The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the WheelEvent.deltaMode unit.
36749
36749
  *
36750
36750
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaZ)
36751
36751
  */
@@ -36848,7 +36848,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
36848
36848
  */
36849
36849
  readonly history: History;
36850
36850
  /**
36851
- * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
36851
+ * 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.
36852
36852
  *
36853
36853
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
36854
36854
  */
@@ -36860,7 +36860,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
36860
36860
  */
36861
36861
  readonly innerWidth: number;
36862
36862
  /**
36863
- * Returns the number of frames (either frame or A number.
36863
+ * Returns the number of frames (either frame or iframe elements) in the window.
36864
36864
  *
36865
36865
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
36866
36866
  */
@@ -37028,7 +37028,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
37028
37028
  */
37029
37029
  readonly speechSynthesis: SpeechSynthesis;
37030
37030
  /**
37031
- * The **`status`** property of the bar at the bottom of the browser window.
37031
+ * 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.
37032
37032
  * @deprecated
37033
37033
  *
37034
37034
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)
@@ -37396,7 +37396,7 @@ declare var Worker: {
37396
37396
  */
37397
37397
  interface Worklet {
37398
37398
  /**
37399
- * The **`addModule()`** method of the adds it to the current `Worklet`.
37399
+ * The **`addModule()`** method of the Worklet interface loads the module in the given JavaScript file and adds it to the current `Worklet`.
37400
37400
  *
37401
37401
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worklet/addModule)
37402
37402
  */
@@ -37458,7 +37458,7 @@ interface WritableStreamDefaultController {
37458
37458
  */
37459
37459
  readonly signal: AbortSignal;
37460
37460
  /**
37461
- * The **`error()`** method of the with the associated stream to error.
37461
+ * The **`error()`** method of the WritableStreamDefaultController interface causes any future interactions with the associated stream to error.
37462
37462
  *
37463
37463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error)
37464
37464
  */
@@ -37477,43 +37477,43 @@ declare var WritableStreamDefaultController: {
37477
37477
  */
37478
37478
  interface WritableStreamDefaultWriter<W = any> {
37479
37479
  /**
37480
- * The **`closed`** read-only property of the the stream errors or the writer's lock is released.
37480
+ * 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.
37481
37481
  *
37482
37482
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed)
37483
37483
  */
37484
37484
  readonly closed: Promise<void>;
37485
37485
  /**
37486
- * The **`desiredSize`** read-only property of the to fill the stream's internal queue.
37486
+ * The **`desiredSize`** read-only property of the WritableStreamDefaultWriter interface returns the desired size required to fill the stream's internal queue.
37487
37487
  *
37488
37488
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize)
37489
37489
  */
37490
37490
  readonly desiredSize: number | null;
37491
37491
  /**
37492
- * 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.
37492
+ * 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.
37493
37493
  *
37494
37494
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready)
37495
37495
  */
37496
37496
  readonly ready: Promise<void>;
37497
37497
  /**
37498
- * 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.
37498
+ * 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.
37499
37499
  *
37500
37500
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort)
37501
37501
  */
37502
37502
  abort(reason?: any): Promise<void>;
37503
37503
  /**
37504
- * The **`close()`** method of the stream.
37504
+ * The **`close()`** method of the WritableStreamDefaultWriter interface closes the associated writable stream.
37505
37505
  *
37506
37506
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close)
37507
37507
  */
37508
37508
  close(): Promise<void>;
37509
37509
  /**
37510
- * The **`releaseLock()`** method of the corresponding stream.
37510
+ * The **`releaseLock()`** method of the WritableStreamDefaultWriter interface releases the writer's lock on the corresponding stream.
37511
37511
  *
37512
37512
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock)
37513
37513
  */
37514
37514
  releaseLock(): void;
37515
37515
  /**
37516
- * The **`write()`** method of the operation.
37516
+ * 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.
37517
37517
  *
37518
37518
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
37519
37519
  */
@@ -37787,7 +37787,7 @@ interface XPathEvaluatorBase {
37787
37787
  */
37788
37788
  interface XPathExpression {
37789
37789
  /**
37790
- * The **`evaluate()`** method of the returns an XPathResult.
37790
+ * The **`evaluate()`** method of the XPathExpression interface executes an XPath expression on the given node or document and returns an XPathResult.
37791
37791
  *
37792
37792
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathExpression/evaluate)
37793
37793
  */
@@ -37806,55 +37806,55 @@ declare var XPathExpression: {
37806
37806
  */
37807
37807
  interface XPathResult {
37808
37808
  /**
37809
- * 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.
37809
+ * The read-only **`booleanValue`** property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being `BOOLEAN_TYPE`.
37810
37810
  *
37811
37811
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/booleanValue)
37812
37812
  */
37813
37813
  readonly booleanValue: boolean;
37814
37814
  /**
37815
- * 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.
37815
+ * The read-only **`invalidIteratorState`** property of the XPathResult interface signifies that the iterator has become invalid.
37816
37816
  *
37817
37817
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/invalidIteratorState)
37818
37818
  */
37819
37819
  readonly invalidIteratorState: boolean;
37820
37820
  /**
37821
- * 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.
37821
+ * The read-only **`numberValue`** property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being `NUMBER_TYPE`.
37822
37822
  *
37823
37823
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/numberValue)
37824
37824
  */
37825
37825
  readonly numberValue: number;
37826
37826
  /**
37827
- * The read-only **`resultType`** property of the the type constants.
37827
+ * The read-only **`resultType`** property of the XPathResult interface represents the type of the result, as defined by the type constants.
37828
37828
  *
37829
37829
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/resultType)
37830
37830
  */
37831
37831
  readonly resultType: number;
37832
37832
  /**
37833
- * The read-only **`singleNodeValue`** property of the `null` in case no node was matched of a result with `FIRST_ORDERED_NODE_TYPE`.
37833
+ * 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`.
37834
37834
  *
37835
37835
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/singleNodeValue)
37836
37836
  */
37837
37837
  readonly singleNodeValue: Node | null;
37838
37838
  /**
37839
- * The read-only **`snapshotLength`** property of the snapshot.
37839
+ * The read-only **`snapshotLength`** property of the XPathResult interface represents the number of nodes in the result snapshot.
37840
37840
  *
37841
37841
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotLength)
37842
37842
  */
37843
37843
  readonly snapshotLength: number;
37844
37844
  /**
37845
- * 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.
37845
+ * The read-only **`stringValue`** property of the XPathResult interface returns the string value of a result with XPathResult.resultType being `STRING_TYPE`.
37846
37846
  *
37847
37847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/stringValue)
37848
37848
  */
37849
37849
  readonly stringValue: string;
37850
37850
  /**
37851
- * The **`iterateNext()`** method of the next node from it or `null` if there are no more nodes.
37851
+ * 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.
37852
37852
  *
37853
37853
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/iterateNext)
37854
37854
  */
37855
37855
  iterateNext(): Node | null;
37856
37856
  /**
37857
- * The **`snapshotItem()`** method of the `null` in case the index is not within the range of nodes.
37857
+ * 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.
37858
37858
  *
37859
37859
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotItem)
37860
37860
  */
@@ -38944,7 +38944,7 @@ declare var frames: WindowProxy;
38944
38944
  */
38945
38945
  declare var history: History;
38946
38946
  /**
38947
- * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
38947
+ * 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.
38948
38948
  *
38949
38949
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
38950
38950
  */
@@ -38956,7 +38956,7 @@ declare var innerHeight: number;
38956
38956
  */
38957
38957
  declare var innerWidth: number;
38958
38958
  /**
38959
- * Returns the number of frames (either frame or A number.
38959
+ * Returns the number of frames (either frame or iframe elements) in the window.
38960
38960
  *
38961
38961
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
38962
38962
  */
@@ -39124,7 +39124,7 @@ declare var self: Window & typeof globalThis;
39124
39124
  */
39125
39125
  declare var speechSynthesis: SpeechSynthesis;
39126
39126
  /**
39127
- * The **`status`** property of the bar at the bottom of the browser window.
39127
+ * 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.
39128
39128
  * @deprecated
39129
39129
  *
39130
39130
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)