@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.6/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
  */
@@ -4861,19 +4861,19 @@ declare var CSSFontPaletteValuesRule: {
4861
4861
  */
4862
4862
  interface CSSGroupingRule extends CSSRule {
4863
4863
  /**
4864
- * The **`cssRules`** property of the a collection of CSSRule objects.
4864
+ * The **`cssRules`** property of the CSSGroupingRule interface returns a CSSRuleList containing a collection of CSSRule objects.
4865
4865
  *
4866
4866
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/cssRules)
4867
4867
  */
4868
4868
  readonly cssRules: CSSRuleList;
4869
4869
  /**
4870
- * The **`deleteRule()`** method of the rules.
4870
+ * The **`deleteRule()`** method of the CSSGroupingRule interface removes a CSS rule from a list of child CSS rules.
4871
4871
  *
4872
4872
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/deleteRule)
4873
4873
  */
4874
4874
  deleteRule(index: number): void;
4875
4875
  /**
4876
- * The **`insertRule()`** method of the ```js-nolint insertRule(rule) insertRule(rule, index) ``` - `rule` - : A string - `index` MISSING: optional_inline] - : An optional index at which to insert the rule; defaults to 0.
4876
+ * The **`insertRule()`** method of the CSSGroupingRule interface adds a new CSS rule to a list of CSS rules.
4877
4877
  *
4878
4878
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSGroupingRule/insertRule)
4879
4879
  */
@@ -4905,7 +4905,7 @@ declare var CSSImageValue: {
4905
4905
  */
4906
4906
  interface CSSImportRule extends CSSRule {
4907
4907
  /**
4908
- * The read-only **`href`** property of the The resolved URL will be the `href` attribute of the associated stylesheet.
4908
+ * The read-only **`href`** property of the CSSImportRule interface returns the URL specified by the @import at-rule.
4909
4909
  *
4910
4910
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/href)
4911
4911
  */
@@ -4917,14 +4917,14 @@ interface CSSImportRule extends CSSRule {
4917
4917
  */
4918
4918
  readonly layerName: string | null;
4919
4919
  /**
4920
- * The read-only **`media`** property of the containing the value of the `media` attribute of the associated stylesheet.
4920
+ * The read-only **`media`** property of the CSSImportRule interface returns a MediaList object, containing the value of the `media` attribute of the associated stylesheet.
4921
4921
  *
4922
4922
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media)
4923
4923
  */
4924
4924
  get media(): MediaList;
4925
4925
  set media(mediaText: string);
4926
4926
  /**
4927
- * The read-only **`styleSheet`** property of the in the form of a CSSStyleSheet object.
4927
+ * The read-only **`styleSheet`** property of the CSSImportRule interface returns the CSS Stylesheet specified by the @import at-rule.
4928
4928
  *
4929
4929
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet)
4930
4930
  */
@@ -5025,7 +5025,7 @@ declare var CSSKeyframesRule: {
5025
5025
  */
5026
5026
  interface CSSKeywordValue extends CSSStyleValue {
5027
5027
  /**
5028
- * The **`value`** property of the `CSSKeywordValue`.
5028
+ * The **`value`** property of the CSSKeywordValue interface returns or sets the value of the `CSSKeywordValue`.
5029
5029
  *
5030
5030
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeywordValue/value)
5031
5031
  */
@@ -5093,7 +5093,7 @@ declare var CSSMathClamp: {
5093
5093
  */
5094
5094
  interface CSSMathInvert extends CSSMathValue {
5095
5095
  /**
5096
- * The CSSMathInvert.value read-only property of the A CSSNumericValue.
5096
+ * The CSSMathInvert.value read-only property of the CSSMathInvert interface returns a CSSNumericValue object.
5097
5097
  *
5098
5098
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathInvert/value)
5099
5099
  */
@@ -5112,7 +5112,7 @@ declare var CSSMathInvert: {
5112
5112
  */
5113
5113
  interface CSSMathMax extends CSSMathValue {
5114
5114
  /**
5115
- * The CSSMathMax.values read-only property of the which contains one or more CSSNumericValue objects.
5115
+ * The CSSMathMax.values read-only property of the CSSMathMax interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5116
5116
  *
5117
5117
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMax/values)
5118
5118
  */
@@ -5131,7 +5131,7 @@ declare var CSSMathMax: {
5131
5131
  */
5132
5132
  interface CSSMathMin extends CSSMathValue {
5133
5133
  /**
5134
- * The CSSMathMin.values read-only property of the which contains one or more CSSNumericValue objects.
5134
+ * The CSSMathMin.values read-only property of the CSSMathMin interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5135
5135
  *
5136
5136
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathMin/values)
5137
5137
  */
@@ -5150,7 +5150,7 @@ declare var CSSMathMin: {
5150
5150
  */
5151
5151
  interface CSSMathNegate extends CSSMathValue {
5152
5152
  /**
5153
- * The CSSMathNegate.value read-only property of the A CSSNumericValue.
5153
+ * The CSSMathNegate.value read-only property of the CSSMathNegate interface returns a CSSNumericValue object.
5154
5154
  *
5155
5155
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathNegate/value)
5156
5156
  */
@@ -5169,7 +5169,7 @@ declare var CSSMathNegate: {
5169
5169
  */
5170
5170
  interface CSSMathProduct extends CSSMathValue {
5171
5171
  /**
5172
- * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a A CSSNumericArray.
5172
+ * The **`CSSMathProduct.values`** read-only property of the CSSMathProduct interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
5173
5173
  *
5174
5174
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMathProduct/values)
5175
5175
  */
@@ -5226,7 +5226,7 @@ declare var CSSMathValue: {
5226
5226
  */
5227
5227
  interface CSSMatrixComponent extends CSSTransformComponent {
5228
5228
  /**
5229
- * The **`matrix`** property of the See the matrix() and matrix3d() pages for examples.
5229
+ * The **`matrix`** property of the CSSMatrixComponent interface gets and sets a 2d or 3d matrix.
5230
5230
  *
5231
5231
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMatrixComponent/matrix)
5232
5232
  */
@@ -5245,7 +5245,7 @@ declare var CSSMatrixComponent: {
5245
5245
  */
5246
5246
  interface CSSMediaRule extends CSSConditionRule {
5247
5247
  /**
5248
- * The read-only **`media`** property of the destination medium for style information.
5248
+ * The read-only **`media`** property of the CSSMediaRule interface returns a MediaList representing the intended destination medium for style information.
5249
5249
  *
5250
5250
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media)
5251
5251
  */
@@ -5310,7 +5310,7 @@ declare var CSSNestedDeclarations: {
5310
5310
  */
5311
5311
  interface CSSNumericArray {
5312
5312
  /**
5313
- * The read-only **`length`** property of the An integer representing the number of CSSNumericValue objects in the list.
5313
+ * The read-only **`length`** property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.
5314
5314
  *
5315
5315
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length)
5316
5316
  */
@@ -5331,61 +5331,61 @@ declare var CSSNumericArray: {
5331
5331
  */
5332
5332
  interface CSSNumericValue extends CSSStyleValue {
5333
5333
  /**
5334
- * The **`add()`** method of the `CSSNumericValue`.
5334
+ * The **`add()`** method of the CSSNumericValue interface adds a supplied number to the `CSSNumericValue`.
5335
5335
  *
5336
5336
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/add)
5337
5337
  */
5338
5338
  add(...values: CSSNumberish[]): CSSNumericValue;
5339
5339
  /**
5340
- * The **`div()`** method of the supplied value.
5340
+ * The **`div()`** method of the CSSNumericValue interface divides the `CSSNumericValue` by the supplied value.
5341
5341
  *
5342
5342
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/div)
5343
5343
  */
5344
5344
  div(...values: CSSNumberish[]): CSSNumericValue;
5345
5345
  /**
5346
- * The **`equals()`** method of the value are strictly equal.
5346
+ * The **`equals()`** method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal.
5347
5347
  *
5348
5348
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/equals)
5349
5349
  */
5350
5350
  equals(...value: CSSNumberish[]): boolean;
5351
5351
  /**
5352
- * The **`max()`** method of the passed.
5352
+ * The **`max()`** method of the CSSNumericValue interface returns the highest value from among the values passed.
5353
5353
  *
5354
5354
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/max)
5355
5355
  */
5356
5356
  max(...values: CSSNumberish[]): CSSNumericValue;
5357
5357
  /**
5358
- * The **`min()`** method of the values passed.
5358
+ * The **`min()`** method of the CSSNumericValue interface returns the lowest value from among those values passed.
5359
5359
  *
5360
5360
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/min)
5361
5361
  */
5362
5362
  min(...values: CSSNumberish[]): CSSNumericValue;
5363
5363
  /**
5364
- * The **`mul()`** method of the the supplied value.
5364
+ * The **`mul()`** method of the CSSNumericValue interface multiplies the `CSSNumericValue` by the supplied value.
5365
5365
  *
5366
5366
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/mul)
5367
5367
  */
5368
5368
  mul(...values: CSSNumberish[]): CSSNumericValue;
5369
5369
  /**
5370
- * The **`sub()`** method of the `CSSNumericValue`.
5370
+ * The **`sub()`** method of the CSSNumericValue interface subtracts a supplied number from the `CSSNumericValue`.
5371
5371
  *
5372
5372
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/sub)
5373
5373
  */
5374
5374
  sub(...values: CSSNumberish[]): CSSNumericValue;
5375
5375
  /**
5376
- * The **`to()`** method of the another.
5376
+ * The **`to()`** method of the CSSNumericValue interface converts a numeric value from one unit to another.
5377
5377
  *
5378
5378
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/to)
5379
5379
  */
5380
5380
  to(unit: string): CSSUnitValue;
5381
5381
  /**
5382
- * The **`toSum()`** method of the ```js-nolint toSum(units) ``` - `units` - : The units to convert to.
5382
+ * The **`toSum()`** method of the CSSNumericValue interface converts the object's value to a CSSMathSum object to values of the specified unit.
5383
5383
  *
5384
5384
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/toSum)
5385
5385
  */
5386
5386
  toSum(...units: string[]): CSSMathSum;
5387
5387
  /**
5388
- * The **`type()`** method of the `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
5388
+ * The **`type()`** method of the CSSNumericValue interface returns the type of `CSSNumericValue`, one of `angle`, `flex`, `frequency`, `length`, `resolution`, `percent`, `percentHint`, or `time`.
5389
5389
  *
5390
5390
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/type)
5391
5391
  */
@@ -5396,7 +5396,7 @@ declare var CSSNumericValue: {
5396
5396
  prototype: CSSNumericValue;
5397
5397
  new(): CSSNumericValue;
5398
5398
  /**
5399
- * The **`parse()`** static method of the members are value and the units.
5399
+ * The **`parse()`** static method of the CSSNumericValue interface converts a value string into an object whose members are value and the units.
5400
5400
  *
5401
5401
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericValue/parse_static)
5402
5402
  */
@@ -5469,7 +5469,7 @@ declare var CSSPageRule: {
5469
5469
  */
5470
5470
  interface CSSPerspective extends CSSTransformComponent {
5471
5471
  /**
5472
- * The **`length`** property of the It is used to apply a perspective transform to the element and its content.
5472
+ * The **`length`** property of the CSSPerspective interface sets the distance from z=0.
5473
5473
  *
5474
5474
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPerspective/length)
5475
5475
  */
@@ -5704,25 +5704,25 @@ declare var CSSPropertyRule: {
5704
5704
  */
5705
5705
  interface CSSRotate extends CSSTransformComponent {
5706
5706
  /**
5707
- * The **`angle`** property of the denotes a clockwise rotation, a negative angle a counter-clockwise one.
5707
+ * The **`angle`** property of the CSSRotate interface gets and sets the angle of rotation.
5708
5708
  *
5709
5709
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/angle)
5710
5710
  */
5711
5711
  angle: CSSNumericValue;
5712
5712
  /**
5713
- * The **`x`** property of the translating vector.
5713
+ * The **`x`** property of the CSSRotate interface gets and sets the abscissa or x-axis of the translating vector.
5714
5714
  *
5715
5715
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/x)
5716
5716
  */
5717
5717
  x: CSSNumberish;
5718
5718
  /**
5719
- * The **`y`** property of the translating vector.
5719
+ * The **`y`** property of the CSSRotate interface gets and sets the ordinate or y-axis of the translating vector.
5720
5720
  *
5721
5721
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/y)
5722
5722
  */
5723
5723
  y: CSSNumberish;
5724
5724
  /**
5725
- * The **`z`** property of the vector.
5725
+ * The **`z`** property of the CSSRotate interface representing the z-component of the translating vector.
5726
5726
  *
5727
5727
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRotate/z)
5728
5728
  */
@@ -5754,13 +5754,13 @@ interface CSSRule {
5754
5754
  */
5755
5755
  readonly parentRule: CSSRule | null;
5756
5756
  /**
5757
- * The **`parentStyleSheet`** property of the the current rule is defined.
5757
+ * The **`parentStyleSheet`** property of the CSSRule interface returns the StyleSheet object in which the current rule is defined.
5758
5758
  *
5759
5759
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/parentStyleSheet)
5760
5760
  */
5761
5761
  readonly parentStyleSheet: CSSStyleSheet | null;
5762
5762
  /**
5763
- * The read-only **`type`** property of the indicating which type of rule the CSSRule represents.
5763
+ * The read-only **`type`** property of the CSSRule interface is a deprecated property that returns an integer indicating which type of rule the CSSRule represents.
5764
5764
  * @deprecated
5765
5765
  *
5766
5766
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSRule/type)
@@ -5830,19 +5830,19 @@ declare var CSSRuleList: {
5830
5830
  */
5831
5831
  interface CSSScale extends CSSTransformComponent {
5832
5832
  /**
5833
- * The **`x`** property of the translating vector.
5833
+ * The **`x`** property of the CSSScale interface gets and sets the abscissa or x-axis of the translating vector.
5834
5834
  *
5835
5835
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/x)
5836
5836
  */
5837
5837
  x: CSSNumberish;
5838
5838
  /**
5839
- * The **`y`** property of the translating vector.
5839
+ * The **`y`** property of the CSSScale interface gets and sets the ordinate or y-axis of the translating vector.
5840
5840
  *
5841
5841
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/y)
5842
5842
  */
5843
5843
  y: CSSNumberish;
5844
5844
  /**
5845
- * The **`z`** property of the vector.
5845
+ * The **`z`** property of the CSSScale interface representing the z-component of the translating vector.
5846
5846
  *
5847
5847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScale/z)
5848
5848
  */
@@ -5886,13 +5886,13 @@ declare var CSSScopeRule: {
5886
5886
  */
5887
5887
  interface CSSSkew extends CSSTransformComponent {
5888
5888
  /**
5889
- * The **`ax`** property of the along the x-axis (or abscissa).
5889
+ * The **`ax`** property of the CSSSkew interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
5890
5890
  *
5891
5891
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ax)
5892
5892
  */
5893
5893
  ax: CSSNumericValue;
5894
5894
  /**
5895
- * The **`ay`** property of the along the y-axis (or ordinate).
5895
+ * The **`ay`** property of the CSSSkew interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
5896
5896
  *
5897
5897
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkew/ay)
5898
5898
  */
@@ -5911,7 +5911,7 @@ declare var CSSSkew: {
5911
5911
  */
5912
5912
  interface CSSSkewX extends CSSTransformComponent {
5913
5913
  /**
5914
- * The **`ax`** property of the along the x-axis (or abscissa).
5914
+ * The **`ax`** property of the CSSSkewX interface gets and sets the angle used to distort the element along the x-axis (or abscissa).
5915
5915
  *
5916
5916
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewX/ax)
5917
5917
  */
@@ -5930,7 +5930,7 @@ declare var CSSSkewX: {
5930
5930
  */
5931
5931
  interface CSSSkewY extends CSSTransformComponent {
5932
5932
  /**
5933
- * The **`ay`** property of the along the y-axis (or ordinate).
5933
+ * The **`ay`** property of the CSSSkewY interface gets and sets the angle used to distort the element along the y-axis (or ordinate).
5934
5934
  *
5935
5935
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSSkewY/ay)
5936
5936
  */
@@ -7383,7 +7383,7 @@ interface CSSStyleRule extends CSSGroupingRule {
7383
7383
  get style(): CSSStyleProperties;
7384
7384
  set style(cssText: string);
7385
7385
  /**
7386
- * The **`styleMap`** read-only property of the which provides access to the rule's property-value pairs.
7386
+ * The **`styleMap`** read-only property of the CSSStyleRule interface returns a StylePropertyMap object which provides access to the rule's property-value pairs.
7387
7387
  *
7388
7388
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap)
7389
7389
  */
@@ -7517,7 +7517,7 @@ interface CSSTransformComponent {
7517
7517
  */
7518
7518
  is2D: boolean;
7519
7519
  /**
7520
- * The **`toMatrix()`** method of the object.
7520
+ * The **`toMatrix()`** method of the CSSTransformComponent interface returns a DOMMatrix object.
7521
7521
  *
7522
7522
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformComponent/toMatrix)
7523
7523
  */
@@ -7537,19 +7537,19 @@ declare var CSSTransformComponent: {
7537
7537
  */
7538
7538
  interface CSSTransformValue extends CSSStyleValue {
7539
7539
  /**
7540
- * The read-only **`is2D`** property of the In the case of the `CSSTransformValue` this property returns true unless any of the individual functions return false for `Is2D`, in which case it returns false.
7540
+ * The read-only **`is2D`** property of the CSSTransformValue interface returns whether the transform is 2D or 3D.
7541
7541
  *
7542
7542
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/is2D)
7543
7543
  */
7544
7544
  readonly is2D: boolean;
7545
7545
  /**
7546
- * The read-only **`length`** property of the the list.
7546
+ * The read-only **`length`** property of the CSSTransformValue interface returns the number of transform components in the list.
7547
7547
  *
7548
7548
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/length)
7549
7549
  */
7550
7550
  readonly length: number;
7551
7551
  /**
7552
- * The **`toMatrix()`** method of the ```js-nolint toMatrix() ``` None.
7552
+ * The **`toMatrix()`** method of the CSSTransformValue interface returns a DOMMatrix object.
7553
7553
  *
7554
7554
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransformValue/toMatrix)
7555
7555
  */
@@ -7570,7 +7570,7 @@ declare var CSSTransformValue: {
7570
7570
  */
7571
7571
  interface CSSTransition extends Animation {
7572
7572
  /**
7573
- * The **`transitionProperty`** property of the name** of the transition.
7573
+ * The **`transitionProperty`** property of the CSSTransition interface returns the **expanded transition property name** of the transition.
7574
7574
  *
7575
7575
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTransition/transitionProperty)
7576
7576
  */
@@ -7593,19 +7593,19 @@ declare var CSSTransition: {
7593
7593
  */
7594
7594
  interface CSSTranslate extends CSSTransformComponent {
7595
7595
  /**
7596
- * The **`x`** property of the translating vector.
7596
+ * The **`x`** property of the CSSTranslate interface gets and sets the abscissa or x-axis of the translating vector.
7597
7597
  *
7598
7598
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/x)
7599
7599
  */
7600
7600
  x: CSSNumericValue;
7601
7601
  /**
7602
- * The **`y`** property of the translating vector.
7602
+ * The **`y`** property of the CSSTranslate interface gets and sets the ordinate or y-axis of the translating vector.
7603
7603
  *
7604
7604
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/y)
7605
7605
  */
7606
7606
  y: CSSNumericValue;
7607
7607
  /**
7608
- * The **`z`** property of the vector.
7608
+ * The **`z`** property of the CSSTranslate interface representing the z-component of the translating vector.
7609
7609
  *
7610
7610
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSTranslate/z)
7611
7611
  */
@@ -7630,7 +7630,7 @@ interface CSSUnitValue extends CSSNumericValue {
7630
7630
  */
7631
7631
  readonly unit: string;
7632
7632
  /**
7633
- * The **`CSSUnitValue.value`** property of the A double.
7633
+ * The **`CSSUnitValue.value`** property of the CSSUnitValue interface returns a double indicating the number of units.
7634
7634
  *
7635
7635
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnitValue/value)
7636
7636
  */
@@ -7649,7 +7649,7 @@ declare var CSSUnitValue: {
7649
7649
  */
7650
7650
  interface CSSUnparsedValue extends CSSStyleValue {
7651
7651
  /**
7652
- * The **`length`** read-only property of the An integer.
7652
+ * The **`length`** read-only property of the CSSUnparsedValue interface returns the number of items in the object.
7653
7653
  *
7654
7654
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSUnparsedValue/length)
7655
7655
  */
@@ -7670,13 +7670,13 @@ declare var CSSUnparsedValue: {
7670
7670
  */
7671
7671
  interface CSSVariableReferenceValue {
7672
7672
  /**
7673
- * The **`fallback`** read-only property of the A CSSUnparsedValue.
7673
+ * The **`fallback`** read-only property of the CSSVariableReferenceValue interface returns the custom property fallback value of the CSSVariableReferenceValue.
7674
7674
  *
7675
7675
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/fallback)
7676
7676
  */
7677
7677
  readonly fallback: CSSUnparsedValue | null;
7678
7678
  /**
7679
- * The **`variable`** property of the A string beginning with `--` (that is, a custom property name).
7679
+ * The **`variable`** property of the CSSVariableReferenceValue interface returns the custom property name of the CSSVariableReferenceValue.
7680
7680
  *
7681
7681
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSVariableReferenceValue/variable)
7682
7682
  */
@@ -7724,7 +7724,7 @@ interface Cache {
7724
7724
  */
7725
7725
  delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise<boolean>;
7726
7726
  /**
7727
- * The **`keys()`** method of the Cache interface returns a representing the keys of the Cache.
7727
+ * The **`keys()`** method of the Cache interface returns a Promise that resolves to an array of Request objects representing the keys of the Cache.
7728
7728
  *
7729
7729
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/keys)
7730
7730
  */
@@ -7742,7 +7742,7 @@ interface Cache {
7742
7742
  */
7743
7743
  matchAll(request?: RequestInfo | URL, options?: CacheQueryOptions): Promise<ReadonlyArray<Response>>;
7744
7744
  /**
7745
- * The **`put()`** method of the Often, you will just want to Window/fetch one or more requests, then add the result straight to your cache.
7745
+ * The **`put()`** method of the Cache interface allows key/value pairs to be added to the current Cache object.
7746
7746
  *
7747
7747
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Cache/put)
7748
7748
  */
@@ -7768,7 +7768,7 @@ interface CacheStorage {
7768
7768
  */
7769
7769
  delete(cacheName: string): Promise<boolean>;
7770
7770
  /**
7771
- * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a You can access `CacheStorage` through the Window.caches property in windows or through the WorkerGlobalScope.caches property in workers.
7771
+ * The **`has()`** method of the CacheStorage interface returns a Promise that resolves to `true` if a Cache object matches the `cacheName`.
7772
7772
  *
7773
7773
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/has)
7774
7774
  */
@@ -7786,7 +7786,7 @@ interface CacheStorage {
7786
7786
  */
7787
7787
  match(request: RequestInfo | URL, options?: MultiCacheQueryOptions): Promise<Response | undefined>;
7788
7788
  /**
7789
- * The **`open()`** method of the the Cache object matching the `cacheName`.
7789
+ * The **`open()`** method of the CacheStorage interface returns a Promise that resolves to the Cache object matching the `cacheName`.
7790
7790
  *
7791
7791
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open)
7792
7792
  */
@@ -7993,7 +7993,7 @@ interface CanvasRect {
7993
7993
  */
7994
7994
  interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasSettings, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
7995
7995
  /**
7996
- * The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the might be `null` if there is no associated canvas element.
7996
+ * The **`CanvasRenderingContext2D.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement object that is associated with a given context.
7997
7997
  *
7998
7998
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas)
7999
7999
  */
@@ -8271,7 +8271,7 @@ declare var Clipboard: {
8271
8271
  */
8272
8272
  interface ClipboardEvent extends Event {
8273
8273
  /**
8274
- * The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to: - specify what data should be put into the clipboard from the Element/cut_event and Element/copy_event event handlers, typically with a DataTransfer.setData call; - obtain the data to be pasted from the Element/paste_event event handler, typically with a DataTransfer.getData call.
8274
+ * The **`clipboardData`** property of the ClipboardEvent interface holds a DataTransfer object, which can be used to:
8275
8275
  *
8276
8276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardEvent/clipboardData)
8277
8277
  */
@@ -8372,7 +8372,7 @@ declare var Comment: {
8372
8372
  */
8373
8373
  interface CompositionEvent extends UIEvent {
8374
8374
  /**
8375
- * The **`data`** read-only property of the method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.
8375
+ * The **`data`** read-only property of the CompositionEvent interface returns the characters generated by the input method that raised the event; its exact nature varies depending on the type of event that generated the `CompositionEvent` object.
8376
8376
  *
8377
8377
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompositionEvent/data)
8378
8378
  */
@@ -8656,7 +8656,7 @@ interface CredentialsContainer {
8656
8656
  */
8657
8657
  preventSilentAccess(): Promise<void>;
8658
8658
  /**
8659
- * The **`store()`** method of the ```js-nolint store(credentials) ``` - `credentials` - : A valid Credential instance.
8659
+ * The **`store()`** method of the CredentialsContainer stores a set of credentials for the user inside a Credential instance, returning this in a Promise.
8660
8660
  *
8661
8661
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CredentialsContainer/store)
8662
8662
  */
@@ -8675,7 +8675,7 @@ declare var CredentialsContainer: {
8675
8675
  */
8676
8676
  interface Crypto {
8677
8677
  /**
8678
- * The **`Crypto.subtle`** read-only property returns a cryptographic operations.
8678
+ * The **`Crypto.subtle`** read-only property returns a SubtleCrypto which can then be used to perform low-level cryptographic operations.
8679
8679
  * Available only in secure contexts.
8680
8680
  *
8681
8681
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle)
@@ -8752,25 +8752,25 @@ interface CustomElementRegistry {
8752
8752
  */
8753
8753
  define(name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions): void;
8754
8754
  /**
8755
- * The **`get()`** method of the previously-defined custom element.
8755
+ * The **`get()`** method of the CustomElementRegistry interface returns the constructor for a previously-defined custom element.
8756
8756
  *
8757
8757
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/get)
8758
8758
  */
8759
8759
  get(name: string): CustomElementConstructor | undefined;
8760
8760
  /**
8761
- * The **`getName()`** method of the previously-defined custom element.
8761
+ * The **`getName()`** method of the CustomElementRegistry interface returns the name for a previously-defined custom element.
8762
8762
  *
8763
8763
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
8764
8764
  */
8765
8765
  getName(constructor: CustomElementConstructor): string | null;
8766
8766
  /**
8767
- * The **`upgrade()`** method of the elements in a Node subtree, even before they are connected to the main document.
8767
+ * The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
8768
8768
  *
8769
8769
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/upgrade)
8770
8770
  */
8771
8771
  upgrade(root: Node): void;
8772
8772
  /**
8773
- * The **`whenDefined()`** method of the resolves when the named element is defined.
8773
+ * The **`whenDefined()`** method of the CustomElementRegistry interface returns a Promise that resolves when the named element is defined.
8774
8774
  *
8775
8775
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/whenDefined)
8776
8776
  */
@@ -8836,13 +8836,13 @@ interface DOMException extends Error {
8836
8836
  */
8837
8837
  readonly code: number;
8838
8838
  /**
8839
- * The **`message`** read-only property of the a message or description associated with the given error name.
8839
+ * The **`message`** read-only property of the DOMException interface returns a string representing a message or description associated with the given error name.
8840
8840
  *
8841
8841
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message)
8842
8842
  */
8843
8843
  readonly message: string;
8844
8844
  /**
8845
- * The **`name`** read-only property of the one of the strings associated with an error name.
8845
+ * The **`name`** read-only property of the DOMException interface returns a string that contains one of the strings associated with an error name.
8846
8846
  *
8847
8847
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name)
8848
8848
  */
@@ -8917,7 +8917,7 @@ interface DOMImplementation {
8917
8917
  */
8918
8918
  createDocument(namespace: string | null, qualifiedName: string | null, doctype?: DocumentType | null): XMLDocument;
8919
8919
  /**
8920
- * The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with into the document via methods like Node.insertBefore() or ```js-nolint createDocumentType(name, publicId, systemId) ``` - `name` - : A string containing the name of the doctype, like `html`.
8920
+ * The **`DOMImplementation.createDocumentType()`** method returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
8921
8921
  *
8922
8922
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMImplementation/createDocumentType)
8923
8923
  */
@@ -9185,7 +9185,7 @@ interface DOMMatrixReadOnly {
9185
9185
  */
9186
9186
  rotateFromVector(x?: number, y?: number): DOMMatrix;
9187
9187
  /**
9188
- * The **`scale()`** method of the original matrix with a scale transform applied.
9188
+ * The **`scale()`** method of the DOMMatrixReadOnly interface creates a new matrix being the result of the original matrix with a scale transform applied.
9189
9189
  *
9190
9190
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale)
9191
9191
  */
@@ -9229,7 +9229,7 @@ interface DOMMatrixReadOnly {
9229
9229
  */
9230
9230
  toJSON(): any;
9231
9231
  /**
9232
- * The **`transformPoint`** method of the You can also create a new `DOMPoint` by applying a matrix to a point with the DOMPointReadOnly.matrixTransform() method.
9232
+ * The **`transformPoint`** method of the DOMMatrixReadOnly interface creates a new DOMPoint object, transforming a specified point by the matrix.
9233
9233
  *
9234
9234
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint)
9235
9235
  */
@@ -9353,7 +9353,7 @@ interface DOMPointReadOnly {
9353
9353
  */
9354
9354
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
9355
9355
  /**
9356
- * The DOMPointReadOnly method `toJSON()` returns an object giving the ```js-nolint toJSON() ``` None.
9356
+ * The DOMPointReadOnly method `toJSON()` returns an object giving the JSON form of the point object.
9357
9357
  *
9358
9358
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON)
9359
9359
  */
@@ -9408,7 +9408,7 @@ interface DOMQuad {
9408
9408
  */
9409
9409
  getBounds(): DOMRect;
9410
9410
  /**
9411
- * The DOMQuad method `toJSON()` returns a ```js-nolint toJSON() ``` None.
9411
+ * The DOMQuad method `toJSON()` returns a JSON representation of the `DOMQuad` object.
9412
9412
  *
9413
9413
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON)
9414
9414
  */
@@ -9458,7 +9458,7 @@ declare var DOMRect: {
9458
9458
  prototype: DOMRect;
9459
9459
  new(x?: number, y?: number, width?: number, height?: number): DOMRect;
9460
9460
  /**
9461
- * The **`fromRect()`** static method of the object with a given location and dimensions.
9461
+ * The **`fromRect()`** static method of the DOMRect object creates a new `DOMRect` object with a given location and dimensions.
9462
9462
  *
9463
9463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static)
9464
9464
  */
@@ -9560,7 +9560,7 @@ declare var DOMRectReadOnly: {
9560
9560
  prototype: DOMRectReadOnly;
9561
9561
  new(x?: number, y?: number, width?: number, height?: number): DOMRectReadOnly;
9562
9562
  /**
9563
- * The **`fromRect()`** static method of the object with a given location and dimensions.
9563
+ * The **`fromRect()`** static method of the DOMRectReadOnly object creates a new `DOMRectReadOnly` object with a given location and dimensions.
9564
9564
  *
9565
9565
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/fromRect_static)
9566
9566
  */
@@ -9708,7 +9708,7 @@ interface DataTransfer {
9708
9708
  */
9709
9709
  readonly files: FileList;
9710
9710
  /**
9711
- * The read-only `items` property of the DataTransfer interface is a A DataTransferItemList object containing DataTransferItem objects representing the items being dragged in a drag operation, one list item for each object being dragged.
9711
+ * The read-only `items` property of the DataTransfer interface is a DataTransferItemList of the DataTransferItem in a drag operation.
9712
9712
  *
9713
9713
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransfer/items)
9714
9714
  */
@@ -9800,13 +9800,13 @@ declare var DataTransferItem: {
9800
9800
  */
9801
9801
  interface DataTransferItemList {
9802
9802
  /**
9803
- * The read-only **`length`** property of the the drag item list.
9803
+ * The read-only **`length`** property of the DataTransferItemList interface returns the number of items currently in the drag item list.
9804
9804
  *
9805
9805
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/length)
9806
9806
  */
9807
9807
  readonly length: number;
9808
9808
  /**
9809
- * The **`DataTransferItemList.add()`** method creates a new list.
9809
+ * The **`DataTransferItemList.add()`** method creates a new DataTransferItem using the specified data and adds it to the drag data list.
9810
9810
  *
9811
9811
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/add)
9812
9812
  */
@@ -9819,7 +9819,7 @@ interface DataTransferItemList {
9819
9819
  */
9820
9820
  clear(): void;
9821
9821
  /**
9822
- * The **`DataTransferItemList.remove()`** method removes the less than zero or greater than one less than the length of the list, the list will not be changed.
9822
+ * The **`DataTransferItemList.remove()`** method removes the DataTransferItem at the specified index from the list.
9823
9823
  *
9824
9824
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DataTransferItemList/remove)
9825
9825
  */
@@ -10033,7 +10033,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10033
10033
  */
10034
10034
  readonly all: HTMLAllCollection;
10035
10035
  /**
10036
- * The **`anchors`** read-only property of the An HTMLCollection.
10036
+ * The **`anchors`** read-only property of the Document interface returns a list of all of the anchors in the document.
10037
10037
  * @deprecated
10038
10038
  *
10039
10039
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/anchors)
@@ -10054,7 +10054,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10054
10054
  */
10055
10055
  bgColor: string;
10056
10056
  /**
10057
- * The **`Document.body`** property represents the `null` if no such element exists.
10057
+ * The **`Document.body`** property represents the body or frameset node of the current document, or `null` if no such element exists.
10058
10058
  *
10059
10059
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/body)
10060
10060
  */
@@ -10096,7 +10096,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10096
10096
  */
10097
10097
  readonly currentScript: HTMLOrSVGScriptElement | null;
10098
10098
  /**
10099
- * In browsers, **`document.defaultView`** returns the This property is read-only.
10099
+ * In browsers, **`document.defaultView`** returns the Window object associated with Browsing_context, or `null` if none is available.
10100
10100
  *
10101
10101
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/defaultView)
10102
10102
  */
@@ -10120,13 +10120,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10120
10120
  */
10121
10121
  readonly doctype: DocumentType | null;
10122
10122
  /**
10123
- * The **`documentElement`** read-only property of the Document interface returns the example, the html element for HTML documents).
10123
+ * The **`documentElement`** read-only property of the Document interface returns the Element that is the root element of the document (for example, the html element for HTML documents).
10124
10124
  *
10125
10125
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentElement)
10126
10126
  */
10127
10127
  readonly documentElement: HTMLElement;
10128
10128
  /**
10129
- * The **`documentURI`** read-only property of the A string.
10129
+ * The **`documentURI`** read-only property of the Document interface returns the document location as a string.
10130
10130
  *
10131
10131
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/documentURI)
10132
10132
  */
@@ -10139,7 +10139,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10139
10139
  */
10140
10140
  domain: string;
10141
10141
  /**
10142
- * The **`embeds`** read-only property of the An HTMLCollection.
10142
+ * The **`embeds`** read-only property of the Document interface returns a list of the embedded embed elements within the current document.
10143
10143
  *
10144
10144
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/embeds)
10145
10145
  */
@@ -10195,7 +10195,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10195
10195
  */
10196
10196
  readonly images: HTMLCollectionOf<HTMLImageElement>;
10197
10197
  /**
10198
- * The **`Document.implementation`** property returns a A DOMImplementation object.
10198
+ * The **`Document.implementation`** property returns a DOMImplementation object associated with the current document.
10199
10199
  *
10200
10200
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/implementation)
10201
10201
  */
@@ -10226,7 +10226,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10226
10226
  */
10227
10227
  readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
10228
10228
  /**
10229
- * The **`Document.location`** read-only property returns a and provides methods for changing that URL and loading another URL.
10229
+ * The **`Document.location`** read-only property returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
10230
10230
  *
10231
10231
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)
10232
10232
  */
@@ -10246,13 +10246,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10246
10246
  onvisibilitychange: ((this: Document, ev: Event) => any) | null;
10247
10247
  readonly ownerDocument: null;
10248
10248
  /**
10249
- * The read-only **`pictureInPictureEnabled`** property of the available.
10249
+ * The read-only **`pictureInPictureEnabled`** property of the Document interface indicates whether or not picture-in-picture mode is available.
10250
10250
  *
10251
10251
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/pictureInPictureEnabled)
10252
10252
  */
10253
10253
  readonly pictureInPictureEnabled: boolean;
10254
10254
  /**
10255
- * The **`plugins`** read-only property of the containing one or more HTMLEmbedElements representing the An HTMLCollection.
10255
+ * The **`plugins`** read-only property of the Document interface returns an HTMLCollection object containing one or more HTMLEmbedElements representing the embed elements in the current document.
10256
10256
  *
10257
10257
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/plugins)
10258
10258
  */
@@ -10270,7 +10270,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10270
10270
  */
10271
10271
  readonly referrer: string;
10272
10272
  /**
10273
- * **`Document.rootElement`** returns the Element that is the root element of the document if it is an documents.
10273
+ * **`Document.rootElement`** returns the Element that is the root element of the document if it is an svg element, otherwise `null`.
10274
10274
  * @deprecated
10275
10275
  *
10276
10276
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)
@@ -10283,7 +10283,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10283
10283
  */
10284
10284
  readonly scripts: HTMLCollectionOf<HTMLScriptElement>;
10285
10285
  /**
10286
- * The **`scrollingElement`** read-only property of the scrolls the document.
10286
+ * The **`scrollingElement`** read-only property of the Document interface returns a reference to the Element that scrolls the document.
10287
10287
  *
10288
10288
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollingElement)
10289
10289
  */
@@ -10480,7 +10480,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10480
10480
  */
10481
10481
  createProcessingInstruction(target: string, data: string): ProcessingInstruction;
10482
10482
  /**
10483
- * The **`Document.createRange()`** method returns a new ```js-nolint createRange() ``` None.
10483
+ * The **`Document.createRange()`** method returns a new Range object.
10484
10484
  *
10485
10485
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createRange)
10486
10486
  */
@@ -10524,7 +10524,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10524
10524
  exitPointerLock(): void;
10525
10525
  getElementById(elementId: string): HTMLElement | null;
10526
10526
  /**
10527
- * The **`getElementsByClassName`** method of of all child elements which have all of the given class name(s).
10527
+ * The **`getElementsByClassName`** method of Document interface returns an array-like object of all child elements which have all of the given class name(s).
10528
10528
  *
10529
10529
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByClassName)
10530
10530
  */
@@ -10536,7 +10536,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10536
10536
  */
10537
10537
  getElementsByName(elementName: string): NodeListOf<HTMLElement>;
10538
10538
  /**
10539
- * The **`getElementsByTagName`** method of The complete document is searched, including the root node.
10539
+ * The **`getElementsByTagName`** method of Document interface returns an HTMLCollection of elements with the given tag name.
10540
10540
  *
10541
10541
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/getElementsByTagName)
10542
10542
  */
@@ -10574,13 +10574,13 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
10574
10574
  */
10575
10575
  hasStorageAccess(): Promise<boolean>;
10576
10576
  /**
10577
- * The Document object's **`importNode()`** method creates a copy of a inserted into the current document later.
10577
+ * The Document object's **`importNode()`** method creates a copy of a Node or DocumentFragment from another document, to be inserted into the current document later.
10578
10578
  *
10579
10579
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
10580
10580
  */
10581
10581
  importNode<T extends Node>(node: T, options?: boolean | ImportNodeOptions): T;
10582
10582
  /**
10583
- * The **`Document.open()`** method opens a document for This does come with some side effects.
10583
+ * The **`Document.open()`** method opens a document for Document.write.
10584
10584
  *
10585
10585
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/open)
10586
10586
  */
@@ -10963,7 +10963,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
10963
10963
  get classList(): DOMTokenList;
10964
10964
  set classList(value: string);
10965
10965
  /**
10966
- * The **`className`** property of the of the specified element.
10966
+ * The **`className`** property of the Element interface gets and sets the value of the `class` attribute of the specified element.
10967
10967
  *
10968
10968
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/className)
10969
10969
  */
@@ -11116,7 +11116,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11116
11116
  */
11117
11117
  computedStyleMap(): StylePropertyMapReadOnly;
11118
11118
  /**
11119
- * The **`getAttribute()`** method of the element.
11119
+ * The **`getAttribute()`** method of the Element interface returns the value of a specified attribute on the element.
11120
11120
  *
11121
11121
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttribute)
11122
11122
  */
@@ -11128,7 +11128,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11128
11128
  */
11129
11129
  getAttributeNS(namespace: string | null, localName: string): string | null;
11130
11130
  /**
11131
- * The **`getAttributeNames()`** method of the array.
11131
+ * The **`getAttributeNames()`** method of the Element interface returns the attribute names of the element as an Array of strings.
11132
11132
  *
11133
11133
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getAttributeNames)
11134
11134
  */
@@ -11146,7 +11146,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11146
11146
  */
11147
11147
  getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
11148
11148
  /**
11149
- * The **`Element.getBoundingClientRect()`** method returns a position relative to the viewport.
11149
+ * The **`Element.getBoundingClientRect()`** method returns a DOMRect object providing information about the size of an element and its position relative to the viewport.
11150
11150
  *
11151
11151
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getBoundingClientRect)
11152
11152
  */
@@ -11158,13 +11158,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11158
11158
  */
11159
11159
  getClientRects(): DOMRectList;
11160
11160
  /**
11161
- * The Element method **`getElementsByClassName()`** returns a live specified class name or names.
11161
+ * The Element method **`getElementsByClassName()`** returns a live HTMLCollection which contains every descendant element which has the specified class name or names.
11162
11162
  *
11163
11163
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByClassName)
11164
11164
  */
11165
11165
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
11166
11166
  /**
11167
- * The **`Element.getElementsByTagName()`** method returns a live All descendants of the specified element are searched, but not the element itself.
11167
+ * The **`Element.getElementsByTagName()`** method returns a live HTMLCollection of elements with the given tag name.
11168
11168
  *
11169
11169
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getElementsByTagName)
11170
11170
  */
@@ -11208,19 +11208,19 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11208
11208
  */
11209
11209
  hasAttributes(): boolean;
11210
11210
  /**
11211
- * The **`hasPointerCapture()`** method of the pointer capture for the pointer identified by the given pointer ID.
11211
+ * The **`hasPointerCapture()`** method of the Element interface checks whether the element on which it is invoked has pointer capture for the pointer identified by the given pointer ID.
11212
11212
  *
11213
11213
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/hasPointerCapture)
11214
11214
  */
11215
11215
  hasPointerCapture(pointerId: number): boolean;
11216
11216
  /**
11217
- * The **`insertAdjacentElement()`** method of the relative to the element it is invoked upon.
11217
+ * The **`insertAdjacentElement()`** method of the Element interface inserts a given element node at a given position relative to the element it is invoked upon.
11218
11218
  *
11219
11219
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentElement)
11220
11220
  */
11221
11221
  insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
11222
11222
  /**
11223
- * The **`insertAdjacentHTML()`** method of the the resulting nodes into the DOM tree at a specified position.
11223
+ * The **`insertAdjacentHTML()`** method of the Element interface parses the specified text as HTML or XML and inserts the resulting nodes into the DOM tree at a specified position.
11224
11224
  *
11225
11225
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/insertAdjacentHTML)
11226
11226
  */
@@ -11238,7 +11238,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11238
11238
  */
11239
11239
  matches(selectors: string): boolean;
11240
11240
  /**
11241
- * The **`releasePointerCapture()`** method of the previously set for a specific (PointerEvent) _pointer_.
11241
+ * The **`releasePointerCapture()`** method of the Element interface releases (stops) _pointer capture_ that was previously set for a specific (PointerEvent) _pointer_.
11242
11242
  *
11243
11243
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/releasePointerCapture)
11244
11244
  */
@@ -11250,7 +11250,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11250
11250
  */
11251
11251
  removeAttribute(qualifiedName: string): void;
11252
11252
  /**
11253
- * The **`removeAttributeNS()`** method of the If you are working with HTML and you don't need to specify the requested attribute as being part of a specific namespace, use the Element.removeAttribute() method instead.
11253
+ * The **`removeAttributeNS()`** method of the Element interface removes the specified attribute with the specified namespace from an element.
11254
11254
  *
11255
11255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/removeAttributeNS)
11256
11256
  */
@@ -11331,13 +11331,13 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
11331
11331
  */
11332
11332
  setHTMLUnsafe(html: string): void;
11333
11333
  /**
11334
- * The **`setPointerCapture()`** method of the _capture target_ of future pointer events.
11334
+ * The **`setPointerCapture()`** method of the Element interface is used to designate a specific element as the _capture target_ of future pointer events.
11335
11335
  *
11336
11336
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture)
11337
11337
  */
11338
11338
  setPointerCapture(pointerId: number): void;
11339
11339
  /**
11340
- * The **`toggleAttribute()`** method of the present and adding it if it is not present) on the given element.
11340
+ * The **`toggleAttribute()`** method of the Element interface toggles a Boolean attribute (removing it if it is present and adding it if it is not present) on the given element.
11341
11341
  *
11342
11342
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/toggleAttribute)
11343
11343
  */
@@ -11615,7 +11615,7 @@ interface Event {
11615
11615
  */
11616
11616
  readonly cancelable: boolean;
11617
11617
  /**
11618
- * The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.
11618
+ * The read-only **`composed`** property of the Event interface returns a boolean value which indicates whether or not the event will propagate across the shadow DOM boundary into the standard DOM.
11619
11619
  *
11620
11620
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed)
11621
11621
  */
@@ -11633,13 +11633,13 @@ interface Event {
11633
11633
  */
11634
11634
  readonly defaultPrevented: boolean;
11635
11635
  /**
11636
- * The **`eventPhase`** read-only property of the being evaluated.
11636
+ * The **`eventPhase`** read-only property of the Event interface indicates which phase of the event flow is currently being evaluated.
11637
11637
  *
11638
11638
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase)
11639
11639
  */
11640
11640
  readonly eventPhase: number;
11641
11641
  /**
11642
- * The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via The only exception is the `click` event, which initializes the `isTrusted` property to `false` in user agents.
11642
+ * The **`isTrusted`** read-only property of the Event interface is a boolean value that is `true` when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via EventTarget.dispatchEvent().
11643
11643
  *
11644
11644
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted)
11645
11645
  */
@@ -11659,7 +11659,7 @@ interface Event {
11659
11659
  */
11660
11660
  readonly srcElement: EventTarget | null;
11661
11661
  /**
11662
- * The read-only **`target`** property of the dispatched.
11662
+ * The read-only **`target`** property of the Event interface is a reference to the object onto which the event was dispatched.
11663
11663
  *
11664
11664
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target)
11665
11665
  */
@@ -11696,7 +11696,7 @@ interface Event {
11696
11696
  */
11697
11697
  preventDefault(): void;
11698
11698
  /**
11699
- * The **`stopImmediatePropagation()`** method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.
11699
+ * The **`stopImmediatePropagation()`** method of the Event interface prevents other listeners of the same event from being called.
11700
11700
  *
11701
11701
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation)
11702
11702
  */
@@ -11763,25 +11763,25 @@ interface EventSource extends EventTarget {
11763
11763
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */
11764
11764
  onopen: ((this: EventSource, ev: Event) => any) | null;
11765
11765
  /**
11766
- * The **`readyState`** read-only property of the connection.
11766
+ * The **`readyState`** read-only property of the EventSource interface returns a number representing the state of the connection.
11767
11767
  *
11768
11768
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState)
11769
11769
  */
11770
11770
  readonly readyState: number;
11771
11771
  /**
11772
- * The **`url`** read-only property of the URL of the source.
11772
+ * The **`url`** read-only property of the EventSource interface returns a string representing the URL of the source.
11773
11773
  *
11774
11774
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url)
11775
11775
  */
11776
11776
  readonly url: string;
11777
11777
  /**
11778
- * The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set.
11778
+ * The **`withCredentials`** read-only property of the EventSource interface returns a boolean value indicating whether the `EventSource` object was instantiated with CORS credentials set.
11779
11779
  *
11780
11780
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials)
11781
11781
  */
11782
11782
  readonly withCredentials: boolean;
11783
11783
  /**
11784
- * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the ```js-nolint close() ``` None.
11784
+ * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the EventSource.readyState attribute to `2` (closed).
11785
11785
  *
11786
11786
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close)
11787
11787
  */
@@ -11972,7 +11972,7 @@ interface FileReader extends EventTarget {
11972
11972
  */
11973
11973
  readAsBinaryString(blob: Blob): void;
11974
11974
  /**
11975
- * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified file's data as a base64 encoded string.
11975
+ * The **`readAsDataURL()`** method of the FileReader interface is used to read the contents of the specified Blob or File.
11976
11976
  *
11977
11977
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileReader/readAsDataURL)
11978
11978
  */
@@ -12007,13 +12007,13 @@ declare var FileReader: {
12007
12007
  */
12008
12008
  interface FileSystem {
12009
12009
  /**
12010
- * The read-only **`name`** property of the string is unique among all file systems currently exposed by the File and Directory Entries API.
12010
+ * The read-only **`name`** property of the FileSystem interface indicates the file system's name.
12011
12011
  *
12012
12012
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/name)
12013
12013
  */
12014
12014
  readonly name: string;
12015
12015
  /**
12016
- * The read-only **`root`** property of the object representing the root directory of the file system, for use with the File and Directory Entries API.
12016
+ * The read-only **`root`** property of the FileSystem interface specifies a FileSystemDirectoryEntry object representing the root directory of the file system, for use with the File and Directory Entries API.
12017
12017
  *
12018
12018
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystem/root)
12019
12019
  */
@@ -12032,19 +12032,19 @@ declare var FileSystem: {
12032
12032
  */
12033
12033
  interface FileSystemDirectoryEntry extends FileSystemEntry {
12034
12034
  /**
12035
- * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a the directory.
12035
+ * The FileSystemDirectoryEntry interface's method **`createReader()`** returns a FileSystemDirectoryReader object which can be used to read the entries in the directory.
12036
12036
  *
12037
12037
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/createReader)
12038
12038
  */
12039
12039
  createReader(): FileSystemDirectoryReader;
12040
12040
  /**
12041
- * The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a somewhere within the directory subtree rooted at the directory on which it's called.
12041
+ * The FileSystemDirectoryEntry interface's method **`getDirectory()`** returns a FileSystemDirectoryEntry object corresponding to a directory contained somewhere within the directory subtree rooted at the directory on which it's called.
12042
12042
  *
12043
12043
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getDirectory)
12044
12044
  */
12045
12045
  getDirectory(path?: string | null, options?: FileSystemFlags, successCallback?: FileSystemEntryCallback, errorCallback?: ErrorCallback): void;
12046
12046
  /**
12047
- * The FileSystemDirectoryEntry interface's method **`getFile()`** returns a within the directory subtree rooted at the directory on which it's called.
12047
+ * The FileSystemDirectoryEntry interface's method **`getFile()`** returns a FileSystemFileEntry object corresponding to a file contained somewhere within the directory subtree rooted at the directory on which it's called.
12048
12048
  *
12049
12049
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryEntry/getFile)
12050
12050
  */
@@ -12065,25 +12065,25 @@ declare var FileSystemDirectoryEntry: {
12065
12065
  interface FileSystemDirectoryHandle extends FileSystemHandle {
12066
12066
  readonly kind: "directory";
12067
12067
  /**
12068
- * The **`getDirectoryHandle()`** method of the within the directory handle on which the method is called.
12068
+ * The **`getDirectoryHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemDirectoryHandle for a subdirectory with the specified name within the directory handle on which the method is called.
12069
12069
  *
12070
12070
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getDirectoryHandle)
12071
12071
  */
12072
12072
  getDirectoryHandle(name: string, options?: FileSystemGetDirectoryOptions): Promise<FileSystemDirectoryHandle>;
12073
12073
  /**
12074
- * The **`getFileHandle()`** method of the directory the method is called.
12074
+ * The **`getFileHandle()`** method of the FileSystemDirectoryHandle interface returns a FileSystemFileHandle for a file with the specified name, within the directory the method is called.
12075
12075
  *
12076
12076
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/getFileHandle)
12077
12077
  */
12078
12078
  getFileHandle(name: string, options?: FileSystemGetFileOptions): Promise<FileSystemFileHandle>;
12079
12079
  /**
12080
- * The **`removeEntry()`** method of the directory handle contains a file or directory called the name specified.
12080
+ * The **`removeEntry()`** method of the FileSystemDirectoryHandle interface attempts to remove an entry if the directory handle contains a file or directory called the name specified.
12081
12081
  *
12082
12082
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/removeEntry)
12083
12083
  */
12084
12084
  removeEntry(name: string, options?: FileSystemRemoveOptions): Promise<void>;
12085
12085
  /**
12086
- * The **`resolve()`** method of the directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
12086
+ * The **`resolve()`** method of the FileSystemDirectoryHandle interface returns an Array of directory names from the parent handle to the specified child entry, with the name of the child entry as the last array item.
12087
12087
  *
12088
12088
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle/resolve)
12089
12089
  */
@@ -12121,7 +12121,7 @@ declare var FileSystemDirectoryReader: {
12121
12121
  */
12122
12122
  interface FileSystemEntry {
12123
12123
  /**
12124
- * The read-only **`filesystem`** property of the FileSystemEntry interface contains a resides.
12124
+ * The read-only **`filesystem`** property of the FileSystemEntry interface contains a FileSystem object that represents the file system on which the entry resides.
12125
12125
  *
12126
12126
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/filesystem)
12127
12127
  */
@@ -12151,7 +12151,7 @@ interface FileSystemEntry {
12151
12151
  */
12152
12152
  readonly name: string;
12153
12153
  /**
12154
- * The FileSystemEntry interface's method **`getParent()`** obtains a ```js-nolint getParent(successCallback, errorCallback) getParent(successCallback) ``` - `successCallback` - : A function which is called when the parent directory entry has been retrieved.
12154
+ * The FileSystemEntry interface's method **`getParent()`** obtains a FileSystemDirectoryEntry.
12155
12155
  *
12156
12156
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemEntry/getParent)
12157
12157
  */
@@ -12170,7 +12170,7 @@ declare var FileSystemEntry: {
12170
12170
  */
12171
12171
  interface FileSystemFileEntry extends FileSystemEntry {
12172
12172
  /**
12173
- * The FileSystemFileEntry interface's method **`file()`** returns a the directory entry.
12173
+ * The FileSystemFileEntry interface's method **`file()`** returns a File object which can be used to read data from the file represented by the directory entry.
12174
12174
  *
12175
12175
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileEntry/file)
12176
12176
  */
@@ -12197,7 +12197,7 @@ interface FileSystemFileHandle extends FileSystemHandle {
12197
12197
  */
12198
12198
  createWritable(options?: FileSystemCreateWritableOptions): Promise<FileSystemWritableFileStream>;
12199
12199
  /**
12200
- * The **`getFile()`** method of the If the file on disk changes or is removed after this method is called, the returned ```js-nolint getFile() ``` None.
12200
+ * The **`getFile()`** method of the FileSystemFileHandle interface returns a Promise which resolves to a File object representing the state on disk of the entry represented by the handle.
12201
12201
  *
12202
12202
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile)
12203
12203
  */
@@ -12217,19 +12217,19 @@ declare var FileSystemFileHandle: {
12217
12217
  */
12218
12218
  interface FileSystemHandle {
12219
12219
  /**
12220
- * The **`kind`** read-only property of the `'file'` if the associated entry is a file or `'directory'`.
12220
+ * The **`kind`** read-only property of the FileSystemHandle interface returns the type of entry.
12221
12221
  *
12222
12222
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind)
12223
12223
  */
12224
12224
  readonly kind: FileSystemHandleKind;
12225
12225
  /**
12226
- * The **`name`** read-only property of the handle.
12226
+ * The **`name`** read-only property of the FileSystemHandle interface returns the name of the entry represented by handle.
12227
12227
  *
12228
12228
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/name)
12229
12229
  */
12230
12230
  readonly name: string;
12231
12231
  /**
12232
- * The **`isSameEntry()`** method of the ```js-nolint isSameEntry(fileSystemHandle) ``` - FileSystemHandle - : The `FileSystemHandle` to match against the handle on which the method is invoked.
12232
+ * The **`isSameEntry()`** method of the FileSystemHandle interface compares two FileSystemHandle to see if the associated entries (either a file or directory) match.
12233
12233
  *
12234
12234
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/isSameEntry)
12235
12235
  */
@@ -12280,7 +12280,7 @@ declare var FileSystemWritableFileStream: {
12280
12280
  */
12281
12281
  interface FocusEvent extends UIEvent {
12282
12282
  /**
12283
- * The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event: <table class='no-markdown'> <thead> <tr> <th scope='col'>Event name</th> <th scope='col'><code>target</code></th> <th scope='col'><code>relatedTarget</code></th> </tr> </thead> <tbody> <tr> <td>Element/blur_event</td> <td>The EventTarget losing focus</td> <td>The EventTarget receiving focus (if any).</td> </tr> <tr> <td>Element/focus_event</td> <td>The EventTarget receiving focus</td> <td>The EventTarget losing focus (if any)</td> </tr> <tr> <td>Element/focusin_event</td> <td>The EventTarget receiving focus</td> <td>The EventTarget losing focus (if any)</td> </tr> <tr> <td>Element/focusout_event</td> <td>The EventTarget losing focus</td> <td>The EventTarget receiving focus (if any)</td> </tr> </tbody> </table> Note that many elements can't have focus, which is a common reason for `relatedTarget` to be `null`.
12283
+ * The **`relatedTarget`** read-only property of the FocusEvent interface is the secondary target, depending on the type of event:
12284
12284
  *
12285
12285
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FocusEvent/relatedTarget)
12286
12286
  */
@@ -12444,7 +12444,7 @@ declare var FontFaceSet: {
12444
12444
  */
12445
12445
  interface FontFaceSetLoadEvent extends Event {
12446
12446
  /**
12447
- * The **`fontfaces`** read-only property of the An array of FontFace instance.
12447
+ * The **`fontfaces`** read-only property of the FontFaceSetLoadEvent interface returns an array of FontFace instances, each of which represents a single usable font.
12448
12448
  *
12449
12449
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent/fontfaces)
12450
12450
  */
@@ -12555,7 +12555,7 @@ declare var FragmentDirective: {
12555
12555
  */
12556
12556
  interface GPUError {
12557
12557
  /**
12558
- * The **`message`** read-only property of the A string.
12558
+ * The **`message`** read-only property of the GPUError interface provides a human-readable message that explains why the error occurred.
12559
12559
  *
12560
12560
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message)
12561
12561
  */
@@ -12600,7 +12600,7 @@ interface Gamepad {
12600
12600
  */
12601
12601
  readonly buttons: ReadonlyArray<GamepadButton>;
12602
12602
  /**
12603
- * The **`Gamepad.connected`** property of the still connected to the system.
12603
+ * The **`Gamepad.connected`** property of the Gamepad interface returns a boolean indicating whether the gamepad is still connected to the system.
12604
12604
  *
12605
12605
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/connected)
12606
12606
  */
@@ -12618,13 +12618,13 @@ interface Gamepad {
12618
12618
  */
12619
12619
  readonly index: number;
12620
12620
  /**
12621
- * The **`Gamepad.mapping`** property of the remapped the controls on the device to a known layout.
12621
+ * The **`Gamepad.mapping`** property of the Gamepad interface returns a string indicating whether the browser has remapped the controls on the device to a known layout.
12622
12622
  *
12623
12623
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/mapping)
12624
12624
  */
12625
12625
  readonly mapping: GamepadMappingType;
12626
12626
  /**
12627
- * The **`Gamepad.timestamp`** property of the representing the last time the data for this gamepad was updated.
12627
+ * The **`Gamepad.timestamp`** property of the Gamepad interface returns a DOMHighResTimeStamp representing the last time the data for this gamepad was updated.
12628
12628
  *
12629
12629
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp)
12630
12630
  */
@@ -12649,19 +12649,19 @@ declare var Gamepad: {
12649
12649
  */
12650
12650
  interface GamepadButton {
12651
12651
  /**
12652
- * The **`GamepadButton.pressed`** property of the the button is currently pressed (`true`) or unpressed (`false`).
12652
+ * The **`GamepadButton.pressed`** property of the GamepadButton interface returns a `boolean` indicating whether the button is currently pressed (`true`) or unpressed (`false`).
12653
12653
  *
12654
12654
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/pressed)
12655
12655
  */
12656
12656
  readonly pressed: boolean;
12657
12657
  /**
12658
- * The **`touched`** property of the a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
12658
+ * The **`touched`** property of the GamepadButton interface returns a `boolean` indicating whether a button capable of detecting touch is currently touched (`true`) or not touched (`false`).
12659
12659
  *
12660
12660
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/touched)
12661
12661
  */
12662
12662
  readonly touched: boolean;
12663
12663
  /**
12664
- * The **`GamepadButton.value`** property of the current state of analog buttons on many modern gamepads, such as the triggers.
12664
+ * The **`GamepadButton.value`** property of the GamepadButton interface returns a double value used to represent the current state of analog buttons on many modern gamepads, such as the triggers.
12665
12665
  *
12666
12666
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadButton/value)
12667
12667
  */
@@ -12680,7 +12680,7 @@ declare var GamepadButton: {
12680
12680
  */
12681
12681
  interface GamepadEvent extends Event {
12682
12682
  /**
12683
- * The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired A Gamepad object.
12683
+ * The **`GamepadEvent.gamepad`** property of the **GamepadEvent interface** returns a Gamepad object, providing access to the associated gamepad data for fired Window.gamepadconnected_event and Window.gamepaddisconnected_event events.
12684
12684
  *
12685
12685
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadEvent/gamepad)
12686
12686
  */
@@ -13282,7 +13282,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
13282
13282
  */
13283
13283
  ping: string;
13284
13284
  /**
13285
- * The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the A string; one of the following: - `no-referrer` - : The Referer header will be omitted entirely.
13285
+ * The **`HTMLAnchorElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the a element defining which referrer is sent when fetching the resource.
13286
13286
  *
13287
13287
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/referrerPolicy)
13288
13288
  */
@@ -13366,7 +13366,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
13366
13366
  */
13367
13367
  ping: string;
13368
13368
  /**
13369
- * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the resource.
13369
+ * The **`HTMLAreaElement.referrerPolicy`** property reflect the HTML `referrerpolicy` attribute of the area element defining which referrer is sent when fetching the resource.
13370
13370
  *
13371
13371
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/referrerPolicy)
13372
13372
  */
@@ -13553,7 +13553,7 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
13553
13553
  */
13554
13554
  formTarget: string;
13555
13555
  /**
13556
- * The **`HTMLButtonElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<button>` element.
13556
+ * The **`HTMLButtonElement.labels`** read-only property returns a NodeList of the label elements associated with the button element.
13557
13557
  *
13558
13558
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels)
13559
13559
  */
@@ -13810,7 +13810,7 @@ interface HTMLDetailsElement extends HTMLElement {
13810
13810
  */
13811
13811
  name: string;
13812
13812
  /**
13813
- * The **`open`** property of the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.
13813
+ * The **`open`** property of the HTMLDetailsElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the details's contents (not counting the summary) is to be shown to the user.
13814
13814
  *
13815
13815
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open)
13816
13816
  */
@@ -13833,13 +13833,13 @@ declare var HTMLDetailsElement: {
13833
13833
  */
13834
13834
  interface HTMLDialogElement extends HTMLElement {
13835
13835
  /**
13836
- * The **`closedBy`** property of the A string; possible values are: - `any` - : The dialog can be dismissed with a light dismiss user action, a platform-specific user action, or a developer-specified mechanism.
13836
+ * The **`closedBy`** property of the HTMLDialogElement interface indicates the types of user actions that can be used to close the associated dialog element.
13837
13837
  *
13838
13838
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/closedBy)
13839
13839
  */
13840
13840
  closedBy: string;
13841
13841
  /**
13842
- * The **`open`** property of the `open` HTML attribute, indicating whether the dialog is available for interaction.
13842
+ * The **`open`** property of the HTMLDialogElement interface is a boolean value reflecting the `open` HTML attribute, indicating whether the dialog is available for interaction.
13843
13843
  *
13844
13844
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/open)
13845
13845
  */
@@ -13869,7 +13869,7 @@ interface HTMLDialogElement extends HTMLElement {
13869
13869
  */
13870
13870
  show(): void;
13871
13871
  /**
13872
- * The **`showModal()`** method of the of any other dialogs that might be present.
13872
+ * The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present.
13873
13873
  *
13874
13874
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
13875
13875
  */
@@ -14326,7 +14326,7 @@ interface HTMLFormElement extends HTMLElement {
14326
14326
  */
14327
14327
  autocomplete: AutoFillBase;
14328
14328
  /**
14329
- * The HTMLFormElement property **`elements`** returns an the form element.
14329
+ * The HTMLFormElement property **`elements`** returns an HTMLFormControlsCollection listing all the form controls contained in the form element.
14330
14330
  *
14331
14331
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/elements)
14332
14332
  */
@@ -14350,7 +14350,7 @@ interface HTMLFormElement extends HTMLElement {
14350
14350
  */
14351
14351
  readonly length: number;
14352
14352
  /**
14353
- * The **`HTMLFormElement.method`** property represents the Unless explicitly specified, the default method is 'get'.
14353
+ * The **`HTMLFormElement.method`** property represents the HTTP method used to submit the form.
14354
14354
  *
14355
14355
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/method)
14356
14356
  */
@@ -14411,7 +14411,7 @@ interface HTMLFormElement extends HTMLElement {
14411
14411
  */
14412
14412
  reset(): void;
14413
14413
  /**
14414
- * The **`HTMLFormElement.submit()`** method submits a given This method is similar, but not identical to, activating a form's submit - No HTMLFormElement/submit_event event is raised.
14414
+ * The **`HTMLFormElement.submit()`** method submits a given form.
14415
14415
  *
14416
14416
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/submit)
14417
14417
  */
@@ -14725,7 +14725,7 @@ interface HTMLIFrameElement extends HTMLElement {
14725
14725
  */
14726
14726
  name: string;
14727
14727
  /**
14728
- * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
14728
+ * The **`HTMLIFrameElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the iframe element defining which referrer is sent when fetching the resource.
14729
14729
  *
14730
14730
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy)
14731
14731
  */
@@ -14831,13 +14831,13 @@ interface HTMLImageElement extends HTMLElement {
14831
14831
  */
14832
14832
  fetchPriority: "high" | "low" | "auto";
14833
14833
  /**
14834
- * The **`height`** property of the drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
14834
+ * The **`height`** property of the HTMLImageElement interface indicates the height at which the image is drawn, in CSS pixel if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
14835
14835
  *
14836
14836
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/height)
14837
14837
  */
14838
14838
  height: number;
14839
14839
  /**
14840
- * The _obsolete_ **`hspace`** property of the space to leave empty on the left and right sides of the img element when laying out the page.
14840
+ * The _obsolete_ **`hspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the left and right sides of the img element when laying out the page.
14841
14841
  * @deprecated
14842
14842
  *
14843
14843
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/hspace)
@@ -14872,7 +14872,7 @@ interface HTMLImageElement extends HTMLElement {
14872
14872
  */
14873
14873
  name: string;
14874
14874
  /**
14875
- * The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in This is the height the image is if drawn with nothing constraining its height; if you don't specify a height for the image, or place the image inside a container that either limits or expressly specifies the image height, it will be rendered this tall.
14875
+ * The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in CSS pixel.
14876
14876
  *
14877
14877
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalHeight)
14878
14878
  */
@@ -14884,7 +14884,7 @@ interface HTMLImageElement extends HTMLElement {
14884
14884
  */
14885
14885
  readonly naturalWidth: number;
14886
14886
  /**
14887
- * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the resource.
14887
+ * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML `referrerpolicy` attribute of the img element defining which referrer is sent when fetching the resource.
14888
14888
  *
14889
14889
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/referrerPolicy)
14890
14890
  */
@@ -14908,38 +14908,38 @@ interface HTMLImageElement extends HTMLElement {
14908
14908
  */
14909
14909
  srcset: string;
14910
14910
  /**
14911
- * The **`useMap`** property on the providing the name of the client-side image map to apply to the image.
14911
+ * The **`useMap`** property on the HTMLImageElement interface reflects the value of the HTML `usemap` attribute, which is a string providing the name of the client-side image map to apply to the image.
14912
14912
  *
14913
14913
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/useMap)
14914
14914
  */
14915
14915
  useMap: string;
14916
14916
  /**
14917
- * The _obsolete_ **`vspace`** property of the to leave empty on the top and bottom of the img element when laying out the page.
14917
+ * The _obsolete_ **`vspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the top and bottom of the img element when laying out the page.
14918
14918
  * @deprecated
14919
14919
  *
14920
14920
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/vspace)
14921
14921
  */
14922
14922
  vspace: number;
14923
14923
  /**
14924
- * The **`width`** property of the drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.
14924
+ * The **`width`** property of the HTMLImageElement interface indicates the width at which an image is drawn in CSS pixel if it's being drawn or rendered to any visual medium such as a screen or printer.
14925
14925
  *
14926
14926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/width)
14927
14927
  */
14928
14928
  width: number;
14929
14929
  /**
14930
- * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the origin.
14930
+ * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the img element's left border edge relative to the root element's origin.
14931
14931
  *
14932
14932
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/x)
14933
14933
  */
14934
14934
  readonly x: number;
14935
14935
  /**
14936
- * The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the origin.
14936
+ * The read-only HTMLImageElement property **`y`** indicates the y-coordinate of the img element's top border edge relative to the root element's origin.
14937
14937
  *
14938
14938
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/y)
14939
14939
  */
14940
14940
  readonly y: number;
14941
14941
  /**
14942
- * The **`decode()`** method of the HTMLImageElement interface returns a it to the DOM.
14942
+ * The **`decode()`** method of the HTMLImageElement interface returns a Promise that resolves once the image is decoded and it is safe to append it to the DOM.
14943
14943
  *
14944
14944
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decode)
14945
14945
  */
@@ -15072,7 +15072,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
15072
15072
  */
15073
15073
  indeterminate: boolean;
15074
15074
  /**
15075
- * The **`HTMLInputElement.labels`** read-only property returns a type `hidden`, the property returns `null`.
15075
+ * The **`HTMLInputElement.labels`** read-only property returns a NodeList of the label elements associated with the input element, if the element is not hidden.
15076
15076
  *
15077
15077
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels)
15078
15078
  */
@@ -15468,7 +15468,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
15468
15468
  */
15469
15469
  media: string;
15470
15470
  /**
15471
- * The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the resource.
15471
+ * The **`referrerPolicy`** property of the HTMLLinkElement interface reflects the HTML `referrerpolicy` attribute of the link element defining which referrer is sent when fetching the resource.
15472
15472
  *
15473
15473
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy)
15474
15474
  */
@@ -15666,7 +15666,7 @@ interface HTMLMediaElement extends HTMLElement {
15666
15666
  */
15667
15667
  readonly ended: boolean;
15668
15668
  /**
15669
- * The **`HTMLMediaElement.error`** property is the there has not been an error.
15669
+ * The **`HTMLMediaElement.error`** property is the MediaError object for the most recent error, or `null` if there has not been an error.
15670
15670
  *
15671
15671
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/error)
15672
15672
  */
@@ -15768,13 +15768,13 @@ interface HTMLMediaElement extends HTMLElement {
15768
15768
  */
15769
15769
  src: string;
15770
15770
  /**
15771
- * The **`srcObject`** property of the the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
15771
+ * The **`srcObject`** property of the HTMLMediaElement interface sets or returns the object which serves as the source of the media associated with the HTMLMediaElement, or `null` if not assigned.
15772
15772
  *
15773
15773
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/srcObject)
15774
15774
  */
15775
15775
  srcObject: MediaProvider | null;
15776
15776
  /**
15777
- * The read-only **`textTracks`** property on HTMLMediaElement objects returns a objects representing the media element's text tracks, in the same order as in the list of text tracks.
15777
+ * The read-only **`textTracks`** property on HTMLMediaElement objects returns a TextTrackList object listing all of the TextTrack objects representing the media element's text tracks, in the same order as in the list of text tracks.
15778
15778
  *
15779
15779
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/textTracks)
15780
15780
  */
@@ -15949,7 +15949,7 @@ interface HTMLMeterElement extends HTMLElement {
15949
15949
  */
15950
15950
  high: number;
15951
15951
  /**
15952
- * The **`HTMLMeterElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<meter>` element.
15952
+ * The **`HTMLMeterElement.labels`** read-only property returns a NodeList of the label elements associated with the meter element.
15953
15953
  *
15954
15954
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels)
15955
15955
  */
@@ -16097,7 +16097,7 @@ interface HTMLObjectElement extends HTMLElement {
16097
16097
  */
16098
16098
  readonly contentWindow: WindowProxy | null;
16099
16099
  /**
16100
- * The **`data`** property of the reflects the `data` HTML attribute, specifying the address of a resource's data.
16100
+ * The **`data`** property of the HTMLObjectElement interface returns a string that reflects the `data` HTML attribute, specifying the address of a resource's data.
16101
16101
  *
16102
16102
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
16103
16103
  */
@@ -16111,7 +16111,7 @@ interface HTMLObjectElement extends HTMLElement {
16111
16111
  */
16112
16112
  readonly form: HTMLFormElement | null;
16113
16113
  /**
16114
- * The **`height`** property of the reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
16114
+ * The **`height`** property of the HTMLObjectElement interface Returns a string that reflects the `height` HTML attribute, specifying the displayed height of the resource in CSS pixels.
16115
16115
  *
16116
16116
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
16117
16117
  */
@@ -16119,7 +16119,7 @@ interface HTMLObjectElement extends HTMLElement {
16119
16119
  /** @deprecated */
16120
16120
  hspace: number;
16121
16121
  /**
16122
- * The **`name`** property of the reflects the `name` HTML attribute, specifying the name of the browsing context.
16122
+ * The **`name`** property of the HTMLObjectElement interface returns a string that reflects the `name` HTML attribute, specifying the name of the browsing context.
16123
16123
  *
16124
16124
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/name)
16125
16125
  */
@@ -16127,13 +16127,13 @@ interface HTMLObjectElement extends HTMLElement {
16127
16127
  /** @deprecated */
16128
16128
  standby: string;
16129
16129
  /**
16130
- * The **`type`** property of the reflects the `type` HTML attribute, specifying the MIME type of the resource.
16130
+ * The **`type`** property of the HTMLObjectElement interface returns a string that reflects the `type` HTML attribute, specifying the MIME type of the resource.
16131
16131
  *
16132
16132
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/type)
16133
16133
  */
16134
16134
  type: string;
16135
16135
  /**
16136
- * The **`useMap`** property of the reflects the `usemap` HTML attribute, specifying a A string.
16136
+ * The **`useMap`** property of the HTMLObjectElement interface returns a string that reflects the `usemap` HTML attribute, specifying a map element to use.
16137
16137
  * @deprecated
16138
16138
  *
16139
16139
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/useMap)
@@ -16154,7 +16154,7 @@ interface HTMLObjectElement extends HTMLElement {
16154
16154
  /** @deprecated */
16155
16155
  vspace: number;
16156
16156
  /**
16157
- * The **`width`** property of the reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
16157
+ * The **`width`** property of the HTMLObjectElement interface returns a string that reflects the `width` HTML attribute, specifying the displayed width of the resource in CSS pixels.
16158
16158
  *
16159
16159
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/width)
16160
16160
  */
@@ -16184,7 +16184,7 @@ interface HTMLObjectElement extends HTMLElement {
16184
16184
  */
16185
16185
  reportValidity(): boolean;
16186
16186
  /**
16187
- * The **`setCustomValidity()`** method of the element.
16187
+ * The **`setCustomValidity()`** method of the HTMLObjectElement interface sets a custom validity message for the element.
16188
16188
  *
16189
16189
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/setCustomValidity)
16190
16190
  */
@@ -16372,7 +16372,7 @@ interface HTMLOutputElement extends HTMLElement {
16372
16372
  get htmlFor(): DOMTokenList;
16373
16373
  set htmlFor(value: string);
16374
16374
  /**
16375
- * The **`HTMLOutputElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<output>` element.
16375
+ * The **`HTMLOutputElement.labels`** read-only property returns a NodeList of the label elements associated with the output element.
16376
16376
  *
16377
16377
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels)
16378
16378
  */
@@ -16531,7 +16531,7 @@ declare var HTMLPreElement: {
16531
16531
  */
16532
16532
  interface HTMLProgressElement extends HTMLElement {
16533
16533
  /**
16534
- * The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the A NodeList containing the `<label>` elements associated with the `<progress>` element.
16534
+ * The **`HTMLProgressElement.labels`** read-only property returns a NodeList of the label elements associated with the progress element.
16535
16535
  *
16536
16536
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLProgressElement/labels)
16537
16537
  */
@@ -16644,7 +16644,7 @@ interface HTMLScriptElement extends HTMLElement {
16644
16644
  */
16645
16645
  noModule: boolean;
16646
16646
  /**
16647
- * The **`referrerPolicy`** property of the `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.
16647
+ * The **`referrerPolicy`** property of the HTMLScriptElement interface reflects the HTML `referrerpolicy` of the script element, which defines how the referrer is set when fetching the script and any scripts it imports.
16648
16648
  *
16649
16649
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/referrerPolicy)
16650
16650
  */
@@ -16709,7 +16709,7 @@ interface HTMLSelectElement extends HTMLElement {
16709
16709
  */
16710
16710
  readonly form: HTMLFormElement | null;
16711
16711
  /**
16712
- * The **`HTMLSelectElement.labels`** read-only property returns a A NodeList containing the `<label>` elements associated with the `<select>` element.
16712
+ * The **`HTMLSelectElement.labels`** read-only property returns a NodeList of the label elements associated with the select element.
16713
16713
  *
16714
16714
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels)
16715
16715
  */
@@ -16751,7 +16751,7 @@ interface HTMLSelectElement extends HTMLElement {
16751
16751
  */
16752
16752
  selectedIndex: number;
16753
16753
  /**
16754
- * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the element that are currently selected.
16754
+ * The **read-only** HTMLSelectElement property **`selectedOptions`** contains a list of the option elements contained within the select element that are currently selected.
16755
16755
  *
16756
16756
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions)
16757
16757
  */
@@ -16805,13 +16805,13 @@ interface HTMLSelectElement extends HTMLElement {
16805
16805
  */
16806
16806
  checkValidity(): boolean;
16807
16807
  /**
16808
- * The **`HTMLSelectElement.item()`** method returns the position in the options list corresponds to the index given in the parameter, or `null` if there are none.
16808
+ * The **`HTMLSelectElement.item()`** method returns the Element corresponding to the HTMLOptionElement whose position in the options list corresponds to the index given in the parameter, or `null` if there are none.
16809
16809
  *
16810
16810
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/item)
16811
16811
  */
16812
16812
  item(index: number): HTMLOptionElement | null;
16813
16813
  /**
16814
- * The **`HTMLSelectElement.namedItem()`** method returns the whose `name` or `id` match the specified name, or `null` if no option matches.
16814
+ * The **`HTMLSelectElement.namedItem()`** method returns the HTMLOptionElement corresponding to the HTMLOptionElement whose `name` or `id` match the specified name, or `null` if no option matches.
16815
16815
  *
16816
16816
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/namedItem)
16817
16817
  */
@@ -17240,7 +17240,7 @@ interface HTMLTableElement extends HTMLElement {
17240
17240
  */
17241
17241
  cellPadding: string;
17242
17242
  /**
17243
- * While you should instead use the CSS interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.
17243
+ * While you should instead use the CSS border-spacing property, the obsolete HTMLTableElement interface's **`cellSpacing`** property represents the spacing around the individual th and td elements representing a table's cells.
17244
17244
  * @deprecated
17245
17245
  *
17246
17246
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/cellSpacing)
@@ -17254,7 +17254,7 @@ interface HTMLTableElement extends HTMLElement {
17254
17254
  */
17255
17255
  frame: string;
17256
17256
  /**
17257
- * The read-only HTMLTableElement property **`rows`** returns a live contained within any thead, tfoot, and Although the property itself is read-only, the returned object is live and allows the modification of its content.
17257
+ * The read-only HTMLTableElement property **`rows`** returns a live HTMLCollection of all the rows in the table, including the rows contained within any thead, tfoot, and tbody elements.
17258
17258
  *
17259
17259
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/rows)
17260
17260
  */
@@ -17280,13 +17280,13 @@ interface HTMLTableElement extends HTMLElement {
17280
17280
  */
17281
17281
  readonly tBodies: HTMLCollectionOf<HTMLTableSectionElement>;
17282
17282
  /**
17283
- * The **`HTMLTableElement.tFoot`** property represents the `null` if there is no such element.
17283
+ * The **`HTMLTableElement.tFoot`** property represents the tfoot element of a table.
17284
17284
  *
17285
17285
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tFoot)
17286
17286
  */
17287
17287
  tFoot: HTMLTableSectionElement | null;
17288
17288
  /**
17289
- * The **`HTMLTableElement.tHead`** represents the `null` if there is no such element.
17289
+ * The **`HTMLTableElement.tHead`** represents the thead element of a table.
17290
17290
  *
17291
17291
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/tHead)
17292
17292
  */
@@ -17299,31 +17299,31 @@ interface HTMLTableElement extends HTMLElement {
17299
17299
  */
17300
17300
  width: string;
17301
17301
  /**
17302
- * The **`HTMLTableElement.createCaption()`** method returns the If no `<caption>` element exists on the table, this method creates it, and then returns it.
17302
+ * The **`HTMLTableElement.createCaption()`** method returns the caption element associated with a given table.
17303
17303
  *
17304
17304
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createCaption)
17305
17305
  */
17306
17306
  createCaption(): HTMLTableCaptionElement;
17307
17307
  /**
17308
- * The **`createTBody()`** method of ```js-nolint createTBody() ``` None.
17308
+ * The **`createTBody()`** method of HTMLTableElement objects creates and returns a new tbody element associated with a given table.
17309
17309
  *
17310
17310
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTBody)
17311
17311
  */
17312
17312
  createTBody(): HTMLTableSectionElement;
17313
17313
  /**
17314
- * The **`createTFoot()`** method of associated with a given table.
17314
+ * The **`createTFoot()`** method of HTMLTableElement objects returns the tfoot element associated with a given table.
17315
17315
  *
17316
17316
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTFoot)
17317
17317
  */
17318
17318
  createTFoot(): HTMLTableSectionElement;
17319
17319
  /**
17320
- * The **`createTHead()`** method of associated with a given table.
17320
+ * The **`createTHead()`** method of HTMLTableElement objects returns the thead element associated with a given table.
17321
17321
  *
17322
17322
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTHead)
17323
17323
  */
17324
17324
  createTHead(): HTMLTableSectionElement;
17325
17325
  /**
17326
- * The **`HTMLTableElement.deleteCaption()`** method removes the `<caption>` element associated with the table, this method does nothing.
17326
+ * The **`HTMLTableElement.deleteCaption()`** method removes the caption element from a given table.
17327
17327
  *
17328
17328
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteCaption)
17329
17329
  */
@@ -17335,13 +17335,13 @@ interface HTMLTableElement extends HTMLElement {
17335
17335
  */
17336
17336
  deleteRow(index: number): void;
17337
17337
  /**
17338
- * The **`HTMLTableElement.deleteTFoot()`** method removes the ```js-nolint deleteTFoot() ``` None.
17338
+ * The **`HTMLTableElement.deleteTFoot()`** method removes the tfoot element from a given table.
17339
17339
  *
17340
17340
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTFoot)
17341
17341
  */
17342
17342
  deleteTFoot(): void;
17343
17343
  /**
17344
- * The **`HTMLTableElement.deleteTHead()`** removes the ```js-nolint deleteTHead() ``` None.
17344
+ * The **`HTMLTableElement.deleteTHead()`** removes the thead element from a given table.
17345
17345
  *
17346
17346
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableElement/deleteTHead)
17347
17347
  */
@@ -17500,7 +17500,7 @@ interface HTMLTableSectionElement extends HTMLElement {
17500
17500
  */
17501
17501
  deleteRow(index: number): void;
17502
17502
  /**
17503
- * The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or ```js-nolint insertRow() insertRow(index) ``` - `index` [MISSING: optional_inline] - : The row index of the new row.
17503
+ * The **`insertRow()`** method of the HTMLTableSectionElement interface inserts a new row (tr) in the given table sectioning element (thead, tfoot, or tbody), then returns a reference to this new row.
17504
17504
  *
17505
17505
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/insertRow)
17506
17506
  */
@@ -17523,7 +17523,7 @@ declare var HTMLTableSectionElement: {
17523
17523
  */
17524
17524
  interface HTMLTemplateElement extends HTMLElement {
17525
17525
  /**
17526
- * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a A DocumentFragment.
17526
+ * The **`HTMLTemplateElement.content`** property returns a `<template>` element's template contents (a DocumentFragment).
17527
17527
  *
17528
17528
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
17529
17529
  */
@@ -17606,7 +17606,7 @@ interface HTMLTextAreaElement extends HTMLElement {
17606
17606
  */
17607
17607
  readonly form: HTMLFormElement | null;
17608
17608
  /**
17609
- * The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the A NodeList containing the `<label>` elements associated with the `<textArea>` element.
17609
+ * The **`HTMLTextAreaElement.labels`** read-only property returns a NodeList of the label elements associated with the textArea element.
17610
17610
  *
17611
17611
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/labels)
17612
17612
  */
@@ -17654,7 +17654,7 @@ interface HTMLTextAreaElement extends HTMLElement {
17654
17654
  */
17655
17655
  rows: number;
17656
17656
  /**
17657
- * <!-- --> The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
17657
+ * The **`selectionDirection`** property of the HTMLTextAreaElement interface specifies the current direction of the selection.
17658
17658
  *
17659
17659
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection)
17660
17660
  */
@@ -17832,7 +17832,7 @@ interface HTMLTrackElement extends HTMLElement {
17832
17832
  */
17833
17833
  label: string;
17834
17834
  /**
17835
- * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state: 0.
17835
+ * The **`readyState`** read-only property of the HTMLTrackElement interface returns a number representing the track element's text track readiness state:
17836
17836
  *
17837
17837
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState)
17838
17838
  */
@@ -17976,7 +17976,7 @@ interface HTMLVideoElement extends HTMLMediaElement {
17976
17976
  */
17977
17977
  cancelVideoFrameCallback(handle: number): void;
17978
17978
  /**
17979
- * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a frames have been lost.
17979
+ * The **HTMLVideoElement** method **`getVideoPlaybackQuality()`** creates and returns a VideoPlaybackQuality object containing metrics including how many frames have been lost.
17980
17980
  *
17981
17981
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLVideoElement/getVideoPlaybackQuality)
17982
17982
  */
@@ -18011,13 +18011,13 @@ declare var HTMLVideoElement: {
18011
18011
  */
18012
18012
  interface HashChangeEvent extends Event {
18013
18013
  /**
18014
- * The **`newURL`** read-only property of the navigating.
18014
+ * The **`newURL`** read-only property of the HashChangeEvent interface returns the new URL to which the window is navigating.
18015
18015
  *
18016
18016
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/newURL)
18017
18017
  */
18018
18018
  readonly newURL: string;
18019
18019
  /**
18020
- * The **`oldURL`** read-only property of the was navigated.
18020
+ * The **`oldURL`** read-only property of the HashChangeEvent interface returns the previous URL from which the window was navigated.
18021
18021
  *
18022
18022
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HashChangeEvent/oldURL)
18023
18023
  */
@@ -18187,19 +18187,19 @@ declare var History: {
18187
18187
  */
18188
18188
  interface IDBCursor {
18189
18189
  /**
18190
- * The **`direction`** read-only property of the direction of traversal of the cursor (set using section below for possible values.
18190
+ * The **`direction`** read-only property of the IDBCursor interface is a string that returns the direction of traversal of the cursor (set using IDBObjectStore.openCursor for example).
18191
18191
  *
18192
18192
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/direction)
18193
18193
  */
18194
18194
  readonly direction: IDBCursorDirection;
18195
18195
  /**
18196
- * The **`key`** read-only property of the position.
18196
+ * The **`key`** read-only property of the IDBCursor interface returns the key for the record at the cursor's position.
18197
18197
  *
18198
18198
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/key)
18199
18199
  */
18200
18200
  readonly key: IDBValidKey;
18201
18201
  /**
18202
- * The **`primaryKey`** read-only property of the cursor is currently being iterated or has iterated outside its range, this is set to undefined.
18202
+ * The **`primaryKey`** read-only property of the IDBCursor interface returns the cursor's current effective key.
18203
18203
  *
18204
18204
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/primaryKey)
18205
18205
  */
@@ -18211,7 +18211,7 @@ interface IDBCursor {
18211
18211
  */
18212
18212
  readonly request: IDBRequest;
18213
18213
  /**
18214
- * The **`source`** read-only property of the null or throws an exception, even if the cursor is currently being iterated, has iterated past its end, or its transaction is not active.
18214
+ * The **`source`** read-only property of the IDBCursor interface returns the IDBObjectStore or IDBIndex that the cursor is iterating over.
18215
18215
  *
18216
18216
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/source)
18217
18217
  */
@@ -18229,7 +18229,7 @@ interface IDBCursor {
18229
18229
  */
18230
18230
  continue(key?: IDBValidKey): void;
18231
18231
  /**
18232
- * The **`continuePrimaryKey()`** method of the matches the key parameter as well as whose primary key matches the primary key parameter.
18232
+ * The **`continuePrimaryKey()`** method of the IDBCursor interface advances the cursor to the item whose key matches the key parameter as well as whose primary key matches the primary key parameter.
18233
18233
  *
18234
18234
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursor/continuePrimaryKey)
18235
18235
  */
@@ -18260,7 +18260,7 @@ declare var IDBCursor: {
18260
18260
  */
18261
18261
  interface IDBCursorWithValue extends IDBCursor {
18262
18262
  /**
18263
- * The **`value`** read-only property of the whatever that is.
18263
+ * The **`value`** read-only property of the IDBCursorWithValue interface returns the value of the current cursor, whatever that is.
18264
18264
  *
18265
18265
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBCursorWithValue/value)
18266
18266
  */
@@ -18292,7 +18292,7 @@ interface IDBDatabase extends EventTarget {
18292
18292
  */
18293
18293
  readonly name: string;
18294
18294
  /**
18295
- * The **`objectStoreNames`** read-only property of the list of the names of the object stores currently in the connected database.
18295
+ * The **`objectStoreNames`** read-only property of the IDBDatabase interface is a DOMStringList containing a list of the names of the object stores currently in the connected database.
18296
18296
  *
18297
18297
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/objectStoreNames)
18298
18298
  */
@@ -18316,13 +18316,13 @@ interface IDBDatabase extends EventTarget {
18316
18316
  */
18317
18317
  close(): void;
18318
18318
  /**
18319
- * The **`createObjectStore()`** method of the The method takes the name of the store as well as a parameter object that lets you define important optional properties.
18319
+ * The **`createObjectStore()`** method of the IDBDatabase interface creates and returns a new IDBObjectStore.
18320
18320
  *
18321
18321
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/createObjectStore)
18322
18322
  */
18323
18323
  createObjectStore(name: string, options?: IDBObjectStoreParameters): IDBObjectStore;
18324
18324
  /**
18325
- * The **`deleteObjectStore()`** method of the the connected database, along with any indexes that reference it.
18325
+ * The **`deleteObjectStore()`** method of the IDBDatabase interface destroys the object store with the given name in the connected database, along with any indexes that reference it.
18326
18326
  *
18327
18327
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBDatabase/deleteObjectStore)
18328
18328
  */
@@ -18363,7 +18363,7 @@ interface IDBFactory {
18363
18363
  */
18364
18364
  databases(): Promise<IDBDatabaseInfo[]>;
18365
18365
  /**
18366
- * The **`deleteDatabase()`** method of the returns an IDBOpenDBRequest object immediately, and performs the deletion operation asynchronously.
18366
+ * The **`deleteDatabase()`** method of the IDBFactory interface requests the deletion of a database.
18367
18367
  *
18368
18368
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBFactory/deleteDatabase)
18369
18369
  */
@@ -18394,7 +18394,7 @@ interface IDBIndex {
18394
18394
  */
18395
18395
  readonly keyPath: string | string[];
18396
18396
  /**
18397
- * The **`multiEntry`** read-only property of the behaves when the result of evaluating the index's key path yields an array.
18397
+ * The **`multiEntry`** read-only property of the IDBIndex interface returns a boolean value that affects how the index behaves when the result of evaluating the index's key path yields an array.
18398
18398
  *
18399
18399
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/multiEntry)
18400
18400
  */
@@ -18424,7 +18424,7 @@ interface IDBIndex {
18424
18424
  */
18425
18425
  count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
18426
18426
  /**
18427
- * The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an If a value is found, then a structured clone of it is created and set as the `result` of the request object: this returns the record the key is associated with.
18427
+ * The **`get()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if `key` is set to an IDBKeyRange.
18428
18428
  *
18429
18429
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/get)
18430
18430
  */
@@ -18442,7 +18442,7 @@ interface IDBIndex {
18442
18442
  */
18443
18443
  getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18444
18444
  /**
18445
- * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an If a primary key is found, it is set as the `result` of the request object.
18445
+ * The **`getKey()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, finds either the primary key that corresponds to the given key in this index or the first corresponding primary key, if `key` is set to an IDBKeyRange.
18446
18446
  *
18447
18447
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/getKey)
18448
18448
  */
@@ -18454,7 +18454,7 @@ interface IDBIndex {
18454
18454
  */
18455
18455
  openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
18456
18456
  /**
18457
- * The **`openKeyCursor()`** method of the a separate thread, creates a cursor over the specified key range, as arranged by this index.
18457
+ * The **`openKeyCursor()`** method of the IDBIndex interface returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
18458
18458
  *
18459
18459
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBIndex/openKeyCursor)
18460
18460
  */
@@ -18473,25 +18473,25 @@ declare var IDBIndex: {
18473
18473
  */
18474
18474
  interface IDBKeyRange {
18475
18475
  /**
18476
- * The **`lower`** read-only property of the The lower bound of the key range (can be any type.) The following example illustrates how you'd use a key range.
18476
+ * The **`lower`** read-only property of the IDBKeyRange interface returns the lower bound of the key range.
18477
18477
  *
18478
18478
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lower)
18479
18479
  */
18480
18480
  readonly lower: any;
18481
18481
  /**
18482
- * The **`lowerOpen`** read-only property of the lower-bound value is included in the key range.
18482
+ * The **`lowerOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the lower-bound value is included in the key range.
18483
18483
  *
18484
18484
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerOpen)
18485
18485
  */
18486
18486
  readonly lowerOpen: boolean;
18487
18487
  /**
18488
- * The **`upper`** read-only property of the The upper bound of the key range (can be any type.) The following example illustrates how you'd use a key range.
18488
+ * The **`upper`** read-only property of the IDBKeyRange interface returns the upper bound of the key range.
18489
18489
  *
18490
18490
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upper)
18491
18491
  */
18492
18492
  readonly upper: any;
18493
18493
  /**
18494
- * The **`upperOpen`** read-only property of the upper-bound value is included in the key range.
18494
+ * The **`upperOpen`** read-only property of the IDBKeyRange interface returns a boolean indicating whether the upper-bound value is included in the key range.
18495
18495
  *
18496
18496
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperOpen)
18497
18497
  */
@@ -18514,7 +18514,7 @@ declare var IDBKeyRange: {
18514
18514
  */
18515
18515
  bound(lower: any, upper: any, lowerOpen?: boolean, upperOpen?: boolean): IDBKeyRange;
18516
18516
  /**
18517
- * The **`lowerBound()`** static method of the By default, it includes the lower endpoint value and is closed.
18517
+ * The **`lowerBound()`** static method of the IDBKeyRange interface creates a new key range with only a lower bound.
18518
18518
  *
18519
18519
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/lowerBound_static)
18520
18520
  */
@@ -18526,7 +18526,7 @@ declare var IDBKeyRange: {
18526
18526
  */
18527
18527
  only(value: any): IDBKeyRange;
18528
18528
  /**
18529
- * The **`upperBound()`** static method of the it includes the upper endpoint value and is closed.
18529
+ * The **`upperBound()`** static method of the IDBKeyRange interface creates a new upper-bound key range.
18530
18530
  *
18531
18531
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBKeyRange/upperBound_static)
18532
18532
  */
@@ -18540,19 +18540,19 @@ declare var IDBKeyRange: {
18540
18540
  */
18541
18541
  interface IDBObjectStore {
18542
18542
  /**
18543
- * The **`autoIncrement`** read-only property of the for this object store.
18543
+ * The **`autoIncrement`** read-only property of the IDBObjectStore interface returns the value of the auto increment flag for this object store.
18544
18544
  *
18545
18545
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/autoIncrement)
18546
18546
  */
18547
18547
  readonly autoIncrement: boolean;
18548
18548
  /**
18549
- * The **`indexNames`** read-only property of the in this object store.
18549
+ * The **`indexNames`** read-only property of the IDBObjectStore interface returns a list of the names of indexes on objects in this object store.
18550
18550
  *
18551
18551
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/indexNames)
18552
18552
  */
18553
18553
  readonly indexNames: DOMStringList;
18554
18554
  /**
18555
- * The **`keyPath`** read-only property of the If this property is null, the application must provide a key for each modification operation.
18555
+ * The **`keyPath`** read-only property of the IDBObjectStore interface returns the key path of this object store.
18556
18556
  *
18557
18557
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
18558
18558
  */
@@ -18564,7 +18564,7 @@ interface IDBObjectStore {
18564
18564
  */
18565
18565
  name: string;
18566
18566
  /**
18567
- * The **`transaction`** read-only property of the object store belongs.
18567
+ * The **`transaction`** read-only property of the IDBObjectStore interface returns the transaction object to which this object store belongs.
18568
18568
  *
18569
18569
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/transaction)
18570
18570
  */
@@ -18582,25 +18582,25 @@ interface IDBObjectStore {
18582
18582
  */
18583
18583
  clear(): IDBRequest<undefined>;
18584
18584
  /**
18585
- * The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or of records in the store.
18585
+ * The **`count()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or IDBKeyRange.
18586
18586
  *
18587
18587
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/count)
18588
18588
  */
18589
18589
  count(query?: IDBValidKey | IDBKeyRange): IDBRequest<number>;
18590
18590
  /**
18591
- * The **`createIndex()`** method of the field/column defining a new data point for each database record to contain.
18591
+ * The **`createIndex()`** method of the IDBObjectStore interface creates and returns a new IDBIndex object in the connected database.
18592
18592
  *
18593
18593
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/createIndex)
18594
18594
  */
18595
18595
  createIndex(name: string, keyPath: string | string[], options?: IDBIndexParameters): IDBIndex;
18596
18596
  /**
18597
- * The **`delete()`** method of the and, in a separate thread, deletes the specified record or records.
18597
+ * The **`delete()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, deletes the specified record or records.
18598
18598
  *
18599
18599
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/delete)
18600
18600
  */
18601
18601
  delete(query: IDBValidKey | IDBKeyRange): IDBRequest<undefined>;
18602
18602
  /**
18603
- * The **`deleteIndex()`** method of the the connected database, used during a version upgrade.
18603
+ * The **`deleteIndex()`** method of the IDBObjectStore interface destroys the index with the specified name in the connected database, used during a version upgrade.
18604
18604
  *
18605
18605
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/deleteIndex)
18606
18606
  */
@@ -18612,7 +18612,7 @@ interface IDBObjectStore {
18612
18612
  */
18613
18613
  get(query: IDBValidKey | IDBKeyRange): IDBRequest<any>;
18614
18614
  /**
18615
- * The **`getAll()`** method of the containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
18615
+ * The **`getAll()`** method of the IDBObjectStore interface returns an IDBRequest object containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
18616
18616
  *
18617
18617
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getAll)
18618
18618
  */
@@ -18624,7 +18624,7 @@ interface IDBObjectStore {
18624
18624
  */
18625
18625
  getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): IDBRequest<IDBValidKey[]>;
18626
18626
  /**
18627
- * The **`getKey()`** method of the and, in a separate thread, returns the key selected by the specified query.
18627
+ * The **`getKey()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the key selected by the specified query.
18628
18628
  *
18629
18629
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/getKey)
18630
18630
  */
@@ -18636,13 +18636,13 @@ interface IDBObjectStore {
18636
18636
  */
18637
18637
  index(name: string): IDBIndex;
18638
18638
  /**
18639
- * The **`openCursor()`** method of the and, in a separate thread, returns a new IDBCursorWithValue object.
18639
+ * The **`openCursor()`** method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns a new IDBCursorWithValue object.
18640
18640
  *
18641
18641
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openCursor)
18642
18642
  */
18643
18643
  openCursor(query?: IDBValidKey | IDBKeyRange | null, direction?: IDBCursorDirection): IDBRequest<IDBCursorWithValue | null>;
18644
18644
  /**
18645
- * The **`openKeyCursor()`** method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.
18645
+ * The **`openKeyCursor()`** method of the IDBObjectStore interface returns an IDBRequest object whose result will be set to an IDBCursor that can be used to iterate through matching results.
18646
18646
  *
18647
18647
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/openKeyCursor)
18648
18648
  */
@@ -18698,7 +18698,7 @@ interface IDBRequestEventMap {
18698
18698
  */
18699
18699
  interface IDBRequest<T = any> extends EventTarget {
18700
18700
  /**
18701
- * The **`error`** read-only property of the request.
18701
+ * The **`error`** read-only property of the IDBRequest interface returns the error in the event of an unsuccessful request.
18702
18702
  *
18703
18703
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/error)
18704
18704
  */
@@ -18708,19 +18708,19 @@ interface IDBRequest<T = any> extends EventTarget {
18708
18708
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/success_event) */
18709
18709
  onsuccess: ((this: IDBRequest<T>, ev: Event) => any) | null;
18710
18710
  /**
18711
- * The **`readyState`** read-only property of the Every request starts in the `pending` state.
18711
+ * The **`readyState`** read-only property of the IDBRequest interface returns the state of the request.
18712
18712
  *
18713
18713
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/readyState)
18714
18714
  */
18715
18715
  readonly readyState: IDBRequestReadyState;
18716
18716
  /**
18717
- * The **`result`** read-only property of the any - `InvalidStateError` DOMException - : Thrown when attempting to access the property if the request is not completed, and therefore the result is not available.
18717
+ * The **`result`** read-only property of the IDBRequest interface returns the result of the request.
18718
18718
  *
18719
18719
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/result)
18720
18720
  */
18721
18721
  readonly result: T;
18722
18722
  /**
18723
- * The **`source`** read-only property of the Index or an object store.
18723
+ * The **`source`** read-only property of the IDBRequest interface returns the source of the request, such as an Index or an object store.
18724
18724
  *
18725
18725
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBRequest/source)
18726
18726
  */
@@ -18773,13 +18773,13 @@ interface IDBTransaction extends EventTarget {
18773
18773
  */
18774
18774
  readonly error: DOMException | null;
18775
18775
  /**
18776
- * The **`mode`** read-only property of the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.
18776
+ * The **`mode`** read-only property of the IDBTransaction interface returns the current mode for accessing the data in the object stores in the scope of the transaction (i.e., is the mode to be read-only, or do you want to write to the object stores?) The default value is `readonly`.
18777
18777
  *
18778
18778
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/mode)
18779
18779
  */
18780
18780
  readonly mode: IDBTransactionMode;
18781
18781
  /**
18782
- * The **`objectStoreNames`** read-only property of the of IDBObjectStore objects.
18782
+ * The **`objectStoreNames`** read-only property of the IDBTransaction interface returns a DOMStringList of names of IDBObjectStore objects.
18783
18783
  *
18784
18784
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)
18785
18785
  */
@@ -18803,7 +18803,7 @@ interface IDBTransaction extends EventTarget {
18803
18803
  */
18804
18804
  commit(): void;
18805
18805
  /**
18806
- * The **`objectStore()`** method of the added to the scope of this transaction.
18806
+ * The **`objectStore()`** method of the IDBTransaction interface returns an object store that has already been added to the scope of this transaction.
18807
18807
  *
18808
18808
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStore)
18809
18809
  */
@@ -18826,13 +18826,13 @@ declare var IDBTransaction: {
18826
18826
  */
18827
18827
  interface IDBVersionChangeEvent extends Event {
18828
18828
  /**
18829
- * The **`newVersion`** read-only property of the database.
18829
+ * The **`newVersion`** read-only property of the IDBVersionChangeEvent interface returns the new version number of the database.
18830
18830
  *
18831
18831
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/newVersion)
18832
18832
  */
18833
18833
  readonly newVersion: number | null;
18834
18834
  /**
18835
- * The **`oldVersion`** read-only property of the database.
18835
+ * The **`oldVersion`** read-only property of the IDBVersionChangeEvent interface returns the old version number of the database.
18836
18836
  *
18837
18837
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBVersionChangeEvent/oldVersion)
18838
18838
  */
@@ -18926,7 +18926,7 @@ declare var ImageBitmap: {
18926
18926
  */
18927
18927
  interface ImageBitmapRenderingContext {
18928
18928
  /**
18929
- * The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the A HTMLCanvasElement or OffscreenCanvas object.
18929
+ * The **`ImageBitmapRenderingContext.canvas`** property, part of the Canvas API, is a read-only reference to the HTMLCanvasElement or OffscreenCanvas object that is associated with the given context.
18930
18930
  *
18931
18931
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageBitmapRenderingContext/canvas)
18932
18932
  */
@@ -18952,7 +18952,7 @@ declare var ImageBitmapRenderingContext: {
18952
18952
  */
18953
18953
  interface ImageCapture {
18954
18954
  /**
18955
- * The **`track`** read-only property of the A MediaStreamTrack object.
18955
+ * The **`track`** read-only property of the ImageCapture interface returns a reference to the MediaStreamTrack passed to the ImageCapture.ImageCapture constructor.
18956
18956
  *
18957
18957
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/track)
18958
18958
  */
@@ -18970,13 +18970,13 @@ interface ImageCapture {
18970
18970
  */
18971
18971
  getPhotoSettings(): Promise<PhotoSettings>;
18972
18972
  /**
18973
- * The **`grabFrame()`** method of the a ImageBitmap containing the snapshot.
18973
+ * The **`grabFrame()`** method of the ImageCapture interface takes a snapshot of the live video in a MediaStreamTrack and returns a Promise that resolves with a ImageBitmap containing the snapshot.
18974
18974
  *
18975
18975
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/grabFrame)
18976
18976
  */
18977
18977
  grabFrame(): Promise<ImageBitmap>;
18978
18978
  /**
18979
- * The **`takePhoto()`** method of the device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
18979
+ * The **`takePhoto()`** method of the ImageCapture interface takes a single exposure using the video capture device sourcing a MediaStreamTrack and returns a Promise that resolves with a Blob containing the data.
18980
18980
  *
18981
18981
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageCapture/takePhoto)
18982
18982
  */
@@ -19001,7 +19001,7 @@ interface ImageData {
19001
19001
  */
19002
19002
  readonly colorSpace: PredefinedColorSpace;
19003
19003
  /**
19004
- * The readonly **`ImageData.data`** property returns a pixel data.
19004
+ * The readonly **`ImageData.data`** property returns a Uint8ClampedArray or Float16Array that contains the ImageData object's pixel data.
19005
19005
  *
19006
19006
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)
19007
19007
  */
@@ -19195,25 +19195,25 @@ declare var InputDeviceInfo: {
19195
19195
  */
19196
19196
  interface InputEvent extends UIEvent {
19197
19197
  /**
19198
- * The **`data`** read-only property of the characters.
19198
+ * The **`data`** read-only property of the InputEvent interface returns a string with inserted characters.
19199
19199
  *
19200
19200
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/data)
19201
19201
  */
19202
19202
  readonly data: string | null;
19203
19203
  /**
19204
- * The **`dataTransfer`** read-only property of the containing information about richtext or plaintext data being added to or removed from editable content.
19204
+ * The **`dataTransfer`** read-only property of the InputEvent interface returns a DataTransfer object containing information about richtext or plaintext data being added to or removed from editable content.
19205
19205
  *
19206
19206
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/dataTransfer)
19207
19207
  */
19208
19208
  readonly dataTransfer: DataTransfer | null;
19209
19209
  /**
19210
- * The **`inputType`** read-only property of the Possible changes include for example inserting, deleting, and formatting text.
19210
+ * The **`inputType`** read-only property of the InputEvent interface returns the type of change made to editable content.
19211
19211
  *
19212
19212
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/inputType)
19213
19213
  */
19214
19214
  readonly inputType: string;
19215
19215
  /**
19216
- * The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after A boolean.
19216
+ * The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after Element/compositionstart_event and before Element/compositionend_event.
19217
19217
  *
19218
19218
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/InputEvent/isComposing)
19219
19219
  */
@@ -19369,7 +19369,7 @@ interface KeyboardEvent extends UIEvent {
19369
19369
  */
19370
19370
  readonly altKey: boolean;
19371
19371
  /**
19372
- * The **`charCode`** read-only property of the pressed during a Element/keypress_event event.
19372
+ * The **`charCode`** read-only property of the KeyboardEvent interface returns the Unicode value of a character key pressed during a Element/keypress_event event.
19373
19373
  * @deprecated
19374
19374
  *
19375
19375
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/charCode)
@@ -19419,7 +19419,7 @@ interface KeyboardEvent extends UIEvent {
19419
19419
  */
19420
19420
  readonly metaKey: boolean;
19421
19421
  /**
19422
- * The **`repeat`** read-only property of the `true` if the given key is being held down such that it is automatically repeating.
19422
+ * The **`repeat`** read-only property of the KeyboardEvent interface returns a boolean value that is `true` if the given key is being held down such that it is automatically repeating.
19423
19423
  *
19424
19424
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/KeyboardEvent/repeat)
19425
19425
  */
@@ -19571,7 +19571,7 @@ interface LinkStyle {
19571
19571
  */
19572
19572
  interface Location {
19573
19573
  /**
19574
- * The **`ancestorOrigins`** read-only property of the Location interface is a static browsing contexts of the document associated with the given Location object.
19574
+ * The **`ancestorOrigins`** read-only property of the Location interface is a static DOMStringList containing, in reverse order, the origins of all ancestor browsing contexts of the document associated with the given Location object.
19575
19575
  *
19576
19576
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins)
19577
19577
  */
@@ -19670,7 +19670,7 @@ interface Lock {
19670
19670
  */
19671
19671
  readonly mode: LockMode;
19672
19672
  /**
19673
- * The **`name`** read-only property of the Lock interface returns the _name_ passed to The name of a lock is passed by script when the lock is requested.
19673
+ * The **`name`** read-only property of the Lock interface returns the _name_ passed to LockManager.request selected when the lock was requested.
19674
19674
  *
19675
19675
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Lock/name)
19676
19676
  */
@@ -20091,7 +20091,7 @@ declare var MediaDevices: {
20091
20091
  */
20092
20092
  interface MediaElementAudioSourceNode extends AudioNode {
20093
20093
  /**
20094
- * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the receiving audio.
20094
+ * The MediaElementAudioSourceNode interface's read-only **`mediaElement`** property indicates the HTMLMediaElement that contains the audio track from which the node is receiving audio.
20095
20095
  *
20096
20096
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaElementAudioSourceNode/mediaElement)
20097
20097
  */
@@ -20288,7 +20288,7 @@ interface MediaKeyStatusMap {
20288
20288
  */
20289
20289
  get(keyId: BufferSource): MediaKeyStatus | undefined;
20290
20290
  /**
20291
- * The **`has()`** method of the whether a value has been associated with the given key.
20291
+ * The **`has()`** method of the MediaKeyStatusMap interface returns a Boolean, asserting whether a value has been associated with the given key.
20292
20292
  *
20293
20293
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeyStatusMap/has)
20294
20294
  */
@@ -20315,13 +20315,13 @@ interface MediaKeySystemAccess {
20315
20315
  */
20316
20316
  readonly keySystem: string;
20317
20317
  /**
20318
- * The `MediaKeySystemAccess.createMediaKeys()` method returns a ```js-nolint createMediaKeys() ``` None.
20318
+ * The `MediaKeySystemAccess.createMediaKeys()` method returns a Promise that resolves to a new MediaKeys object.
20319
20319
  *
20320
20320
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/createMediaKeys)
20321
20321
  */
20322
20322
  createMediaKeys(): Promise<MediaKeys>;
20323
20323
  /**
20324
- * The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options: - `initDataTypes` [MISSING: ReadOnlyInline] - : Returns a list of supported initialization data type names.
20324
+ * The **`getConfiguration()`** method of the MediaKeySystemAccess interface returns an object with the supported combination of the following configuration options:
20325
20325
  *
20326
20326
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeySystemAccess/getConfiguration)
20327
20327
  */
@@ -20417,25 +20417,25 @@ declare var MediaList: {
20417
20417
  */
20418
20418
  interface MediaMetadata {
20419
20419
  /**
20420
- * The **`album`** property of the collection containing the media to be played.
20420
+ * The **`album`** property of the MediaMetadata interface returns or sets the name of the album or collection containing the media to be played.
20421
20421
  *
20422
20422
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/album)
20423
20423
  */
20424
20424
  album: string;
20425
20425
  /**
20426
- * The **`artist`** property of the creator, etc., of the media to be played.
20426
+ * The **`artist`** property of the MediaMetadata interface returns or sets the name of the artist, group, creator, etc., of the media to be played.
20427
20427
  *
20428
20428
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artist)
20429
20429
  */
20430
20430
  artist: string;
20431
20431
  /**
20432
- * The **`artwork`** property of the objects representing images associated with playing media.
20432
+ * The **`artwork`** property of the MediaMetadata interface returns or sets an array of objects representing images associated with playing media.
20433
20433
  *
20434
20434
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/artwork)
20435
20435
  */
20436
20436
  artwork: ReadonlyArray<MediaImage>;
20437
20437
  /**
20438
- * The **`title`** property of the played.
20438
+ * The **`title`** property of the MediaMetadata interface returns or sets the title of the media to be played.
20439
20439
  *
20440
20440
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaMetadata/title)
20441
20441
  */
@@ -20458,13 +20458,13 @@ interface MediaQueryListEventMap {
20458
20458
  */
20459
20459
  interface MediaQueryList extends EventTarget {
20460
20460
  /**
20461
- * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
20461
+ * The **`matches`** read-only property of the MediaQueryList interface is a boolean value that returns `true` if the document currently matches the media query list, or `false` if not.
20462
20462
  *
20463
20463
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/matches)
20464
20464
  */
20465
20465
  readonly matches: boolean;
20466
20466
  /**
20467
- * The **`media`** read-only property of the serialized media query.
20467
+ * The **`media`** read-only property of the MediaQueryList interface is a string representing a serialized media query.
20468
20468
  *
20469
20469
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/media)
20470
20470
  */
@@ -20472,14 +20472,14 @@ interface MediaQueryList extends EventTarget {
20472
20472
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/change_event) */
20473
20473
  onchange: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null;
20474
20474
  /**
20475
- * The deprecated **`addListener()`** method of the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
20475
+ * The deprecated **`addListener()`** method of the MediaQueryList interface adds a listener to the `MediaQueryListener` that will run a custom callback function in response to the media query status changing.
20476
20476
  * @deprecated
20477
20477
  *
20478
20478
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/addListener)
20479
20479
  */
20480
20480
  addListener(callback: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null): void;
20481
20481
  /**
20482
- * The **`removeListener()`** method of the `MediaQueryListener`.
20482
+ * The **`removeListener()`** method of the MediaQueryList interface removes a listener from the `MediaQueryListener`.
20483
20483
  * @deprecated
20484
20484
  *
20485
20485
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryList/removeListener)
@@ -20503,13 +20503,13 @@ declare var MediaQueryList: {
20503
20503
  */
20504
20504
  interface MediaQueryListEvent extends Event {
20505
20505
  /**
20506
- * The **`matches`** read-only property of the `true` if the document currently matches the media query list, or `false` if not.
20506
+ * The **`matches`** read-only property of the MediaQueryListEvent interface is a boolean value that is `true` if the document currently matches the media query list, or `false` if not.
20507
20507
  *
20508
20508
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/matches)
20509
20509
  */
20510
20510
  readonly matches: boolean;
20511
20511
  /**
20512
- * The **`media`** read-only property of the a serialized media query.
20512
+ * The **`media`** read-only property of the MediaQueryListEvent interface is a string representing a serialized media query.
20513
20513
  *
20514
20514
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaQueryListEvent/media)
20515
20515
  */
@@ -20585,7 +20585,7 @@ interface MediaRecorder extends EventTarget {
20585
20585
  */
20586
20586
  pause(): void;
20587
20587
  /**
20588
- * The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a called.
20588
+ * The **`requestData()`** method of the MediaRecorder interface is used to raise a MediaRecorder.dataavailable_event event containing a Blob object of the captured media as it was when the method was called.
20589
20589
  *
20590
20590
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaRecorder/requestData)
20591
20591
  */
@@ -20638,7 +20638,7 @@ interface MediaSession {
20638
20638
  */
20639
20639
  metadata: MediaMetadata | null;
20640
20640
  /**
20641
- * The **`playbackState`** property of the playing or paused.
20641
+ * The **`playbackState`** property of the MediaSession interface indicates whether the current media session is playing or paused.
20642
20642
  *
20643
20643
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/playbackState)
20644
20644
  */
@@ -20662,7 +20662,7 @@ interface MediaSession {
20662
20662
  */
20663
20663
  setMicrophoneActive(active: boolean): Promise<void>;
20664
20664
  /**
20665
- * The **`setPositionState()`** method of the document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.
20665
+ * The **`setPositionState()`** method of the MediaSession interface is used to update the current document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media.
20666
20666
  *
20667
20667
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSession/setPositionState)
20668
20668
  */
@@ -20687,7 +20687,7 @@ interface MediaSourceEventMap {
20687
20687
  */
20688
20688
  interface MediaSource extends EventTarget {
20689
20689
  /**
20690
- * The **`activeSourceBuffers`** read-only property of the containing a subset of the SourceBuffer objects contained within providing the selected video track, enabled audio tracks, and shown/hidden text tracks.
20690
+ * The **`activeSourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing a subset of the SourceBuffer objects contained within MediaSource.sourceBuffers — the list of objects providing the selected video track, enabled audio tracks, and shown/hidden text tracks.
20691
20691
  *
20692
20692
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/activeSourceBuffers)
20693
20693
  */
@@ -20705,31 +20705,31 @@ interface MediaSource extends EventTarget {
20705
20705
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
20706
20706
  onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
20707
20707
  /**
20708
- * The **`readyState`** read-only property of the current `MediaSource`.
20708
+ * The **`readyState`** read-only property of the MediaSource interface returns an enum representing the state of the current `MediaSource`.
20709
20709
  *
20710
20710
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState)
20711
20711
  */
20712
20712
  readonly readyState: ReadyState;
20713
20713
  /**
20714
- * The **`sourceBuffers`** read-only property of the containing the list of SourceBuffer objects associated with this `MediaSource`.
20714
+ * The **`sourceBuffers`** read-only property of the MediaSource interface returns a SourceBufferList object containing the list of SourceBuffer objects associated with this `MediaSource`.
20715
20715
  *
20716
20716
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceBuffers)
20717
20717
  */
20718
20718
  readonly sourceBuffers: SourceBufferList;
20719
20719
  /**
20720
- * The **`addSourceBuffer()`** method of the given MIME type and adds it to the `MediaSource`'s `SourceBuffer` is also returned.
20720
+ * The **`addSourceBuffer()`** method of the MediaSource interface creates a new SourceBuffer of the given MIME type and adds it to the `MediaSource`'s MediaSource.sourceBuffers list.
20721
20721
  *
20722
20722
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/addSourceBuffer)
20723
20723
  */
20724
20724
  addSourceBuffer(type: string): SourceBuffer;
20725
20725
  /**
20726
- * The **`clearLiveSeekableRange()`** method of the to MediaSource.setLiveSeekableRange().
20726
+ * The **`clearLiveSeekableRange()`** method of the MediaSource interface clears a seekable range previously set with a call to MediaSource.setLiveSeekableRange().
20727
20727
  *
20728
20728
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/clearLiveSeekableRange)
20729
20729
  */
20730
20730
  clearLiveSeekableRange(): void;
20731
20731
  /**
20732
- * The **`endOfStream()`** method of the ```js-nolint endOfStream() endOfStream(endOfStreamError) ``` - `endOfStreamError` MISSING: optional_inline] - : A string representing an error to throw when the end of the stream is reached.
20732
+ * The **`endOfStream()`** method of the MediaSource interface signals the end of the stream.
20733
20733
  *
20734
20734
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/endOfStream)
20735
20735
  */
@@ -20741,7 +20741,7 @@ interface MediaSource extends EventTarget {
20741
20741
  */
20742
20742
  removeSourceBuffer(sourceBuffer: SourceBuffer): void;
20743
20743
  /**
20744
- * The **`setLiveSeekableRange()`** method of the media element.
20744
+ * The **`setLiveSeekableRange()`** method of the MediaSource interface sets the range that the user can seek to in the media element.
20745
20745
  *
20746
20746
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/setLiveSeekableRange)
20747
20747
  */
@@ -20794,7 +20794,7 @@ interface MediaStreamEventMap {
20794
20794
  */
20795
20795
  interface MediaStream extends EventTarget {
20796
20796
  /**
20797
- * The **`active`** read-only property of the `true` if the stream is currently active; otherwise, it returns `false`.
20797
+ * The **`active`** read-only property of the MediaStream interface returns a Boolean value which is `true` if the stream is currently active; otherwise, it returns `false`.
20798
20798
  *
20799
20799
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/active)
20800
20800
  */
@@ -20822,7 +20822,7 @@ interface MediaStream extends EventTarget {
20822
20822
  */
20823
20823
  clone(): MediaStream;
20824
20824
  /**
20825
- * The **`getAudioTracks()`** method of the stream's track set where MediaStreamTrack.kind is `audio`.
20825
+ * The **`getAudioTracks()`** method of the MediaStream interface returns a sequence that represents all the MediaStreamTrack objects in this stream's track set where MediaStreamTrack.kind is `audio`.
20826
20826
  *
20827
20827
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getAudioTracks)
20828
20828
  */
@@ -20834,19 +20834,19 @@ interface MediaStream extends EventTarget {
20834
20834
  */
20835
20835
  getTrackById(trackId: string): MediaStreamTrack | null;
20836
20836
  /**
20837
- * The **`getTracks()`** method of the stream's track set, regardless of MediaStreamTrack.kind.
20837
+ * The **`getTracks()`** method of the MediaStream interface returns a sequence that represents all the MediaStreamTrack objects in this stream's track set, regardless of MediaStreamTrack.kind.
20838
20838
  *
20839
20839
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getTracks)
20840
20840
  */
20841
20841
  getTracks(): MediaStreamTrack[];
20842
20842
  /**
20843
- * The **`getVideoTracks()`** method of the ```js-nolint getVideoTracks() ``` None.
20843
+ * The **`getVideoTracks()`** method of the MediaStream interface returns a sequence of MediaStreamTrack objects representing the video tracks in this stream.
20844
20844
  *
20845
20845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/getVideoTracks)
20846
20846
  */
20847
20847
  getVideoTracks(): MediaStreamTrack[];
20848
20848
  /**
20849
- * The **`removeTrack()`** method of the MediaStream interface removes a ```js-nolint removeTrack(track) ``` - `track` - : A MediaStreamTrack that will be removed from the stream.
20849
+ * The **`removeTrack()`** method of the MediaStream interface removes a MediaStreamTrack from a stream.
20850
20850
  *
20851
20851
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStream/removeTrack)
20852
20852
  */
@@ -20890,7 +20890,7 @@ declare var MediaStreamAudioDestinationNode: {
20890
20890
  */
20891
20891
  interface MediaStreamAudioSourceNode extends AudioNode {
20892
20892
  /**
20893
- * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the receiving audio.
20893
+ * The MediaStreamAudioSourceNode interface's read-only **`mediaStream`** property indicates the MediaStream that contains the audio track from which the node is receiving audio.
20894
20894
  *
20895
20895
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamAudioSourceNode/mediaStream)
20896
20896
  */
@@ -20921,7 +20921,7 @@ interface MediaStreamTrack extends EventTarget {
20921
20921
  */
20922
20922
  contentHint: string;
20923
20923
  /**
20924
- * The **`enabled`** property of the `true` if the track is allowed to render the source stream or `false` if it is not.
20924
+ * The **`enabled`** property of the MediaStreamTrack interface is a Boolean value which is `true` if the track is allowed to render the source stream or `false` if it is not.
20925
20925
  *
20926
20926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/enabled)
20927
20927
  */
@@ -20945,7 +20945,7 @@ interface MediaStreamTrack extends EventTarget {
20945
20945
  */
20946
20946
  readonly label: string;
20947
20947
  /**
20948
- * The **`muted`** read-only property of the indicating whether or not the track is currently unable to provide media output.
20948
+ * The **`muted`** read-only property of the MediaStreamTrack interface returns a boolean value indicating whether or not the track is currently unable to provide media output.
20949
20949
  *
20950
20950
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/muted)
20951
20951
  */
@@ -20981,13 +20981,13 @@ interface MediaStreamTrack extends EventTarget {
20981
20981
  */
20982
20982
  getCapabilities(): MediaTrackCapabilities;
20983
20983
  /**
20984
- * The **`getConstraints()`** method of the MediaStreamTrack interface returns a recently established for the track using a prior call to constraints indicate values and ranges of values that the website or application has specified are required or acceptable for the included constrainable properties.
20984
+ * The **`getConstraints()`** method of the MediaStreamTrack interface returns a MediaTrackConstraints object containing the set of constraints most recently established for the track using a prior call to MediaStreamTrack.applyConstraints.
20985
20985
  *
20986
20986
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getConstraints)
20987
20987
  */
20988
20988
  getConstraints(): MediaTrackConstraints;
20989
20989
  /**
20990
- * The **`getSettings()`** method of the object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
20990
+ * The **`getSettings()`** method of the MediaStreamTrack interface returns a MediaTrackSettings object containing the current values of each of the constrainable properties for the current `MediaStreamTrack`.
20991
20991
  *
20992
20992
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrack/getSettings)
20993
20993
  */
@@ -21035,13 +21035,13 @@ declare var MediaStreamTrackEvent: {
21035
21035
  */
21036
21036
  interface MessageChannel {
21037
21037
  /**
21038
- * The **`port1`** read-only property of the the port attached to the context that originated the channel.
21038
+ * The **`port1`** read-only property of the MessageChannel interface returns the first port of the message channel — the port attached to the context that originated the channel.
21039
21039
  *
21040
21040
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1)
21041
21041
  */
21042
21042
  readonly port1: MessagePort;
21043
21043
  /**
21044
- * The **`port2`** read-only property of the the port attached to the context at the other end of the channel, which the message is initially sent to.
21044
+ * The **`port2`** read-only property of the MessageChannel interface returns the second port of the message channel — the port attached to the context at the other end of the channel, which the message is initially sent to.
21045
21045
  *
21046
21046
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2)
21047
21047
  */
@@ -21060,31 +21060,31 @@ declare var MessageChannel: {
21060
21060
  */
21061
21061
  interface MessageEvent<T = any> extends Event {
21062
21062
  /**
21063
- * The **`data`** read-only property of the The data sent by the message emitter; this can be any data type, depending on what originated this event.
21063
+ * The **`data`** read-only property of the MessageEvent interface represents the data sent by the message emitter.
21064
21064
  *
21065
21065
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data)
21066
21066
  */
21067
21067
  readonly data: T;
21068
21068
  /**
21069
- * The **`lastEventId`** read-only property of the unique ID for the event.
21069
+ * The **`lastEventId`** read-only property of the MessageEvent interface is a string representing a unique ID for the event.
21070
21070
  *
21071
21071
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId)
21072
21072
  */
21073
21073
  readonly lastEventId: string;
21074
21074
  /**
21075
- * The **`origin`** read-only property of the origin of the message emitter.
21075
+ * The **`origin`** read-only property of the MessageEvent interface is a string representing the origin of the message emitter.
21076
21076
  *
21077
21077
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin)
21078
21078
  */
21079
21079
  readonly origin: string;
21080
21080
  /**
21081
- * The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.
21081
+ * The **`ports`** read-only property of the MessageEvent interface is an array of MessagePort objects containing all MessagePort objects sent with the message, in order.
21082
21082
  *
21083
21083
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports)
21084
21084
  */
21085
21085
  readonly ports: ReadonlyArray<MessagePort>;
21086
21086
  /**
21087
- * The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter.
21087
+ * The **`source`** read-only property of the MessageEvent interface is a `MessageEventSource` (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter.
21088
21088
  *
21089
21089
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
21090
21090
  */
@@ -21132,7 +21132,7 @@ interface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {
21132
21132
  */
21133
21133
  close(): void;
21134
21134
  /**
21135
- * The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.
21135
+ * The **`postMessage()`** method of the MessagePort interface sends a message from the port, and optionally, transfers ownership of objects to other browsing contexts.
21136
21136
  *
21137
21137
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage)
21138
21138
  */
@@ -21674,7 +21674,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21674
21674
  readonly credentials: CredentialsContainer;
21675
21675
  readonly doNotTrack: string | null;
21676
21676
  /**
21677
- * The **`Navigator.geolocation`** read-only property returns a device.
21677
+ * The **`Navigator.geolocation`** read-only property returns a Geolocation object that gives Web content access to the location of the device.
21678
21678
  *
21679
21679
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/geolocation)
21680
21680
  */
@@ -21687,7 +21687,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21687
21687
  */
21688
21688
  readonly login: NavigatorLogin;
21689
21689
  /**
21690
- * The **`maxTouchPoints`** read-only property of the contact points that are supported by the current device.
21690
+ * The **`maxTouchPoints`** read-only property of the Navigator interface returns the maximum number of simultaneous touch contact points that are supported by the current device.
21691
21691
  *
21692
21692
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/maxTouchPoints)
21693
21693
  */
@@ -21712,7 +21712,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21712
21712
  */
21713
21713
  readonly mediaSession: MediaSession;
21714
21714
  /**
21715
- * The **`permissions`** read-only property of the Navigator interface returns a status of APIs covered by the Permissions API.
21715
+ * The **`permissions`** read-only property of the Navigator interface returns a Permissions object that can be used to query and update permission status of APIs covered by the Permissions API.
21716
21716
  *
21717
21717
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/permissions)
21718
21718
  */
@@ -21744,7 +21744,7 @@ interface Navigator extends NavigatorAutomationInformation, NavigatorBadge, Navi
21744
21744
  */
21745
21745
  canShare(data?: ShareData): boolean;
21746
21746
  /**
21747
- * The **`Navigator.getGamepads()`** method returns an array of Elements in the array may be `null` if a gamepad disconnects during a session, so that the remaining gamepads retain the same index.
21747
+ * The **`Navigator.getGamepads()`** method returns an array of Gamepad objects, one for each gamepad connected to the device.
21748
21748
  *
21749
21749
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/getGamepads)
21750
21750
  */
@@ -21954,7 +21954,7 @@ interface Node extends EventTarget {
21954
21954
  */
21955
21955
  readonly baseURI: string;
21956
21956
  /**
21957
- * The read-only **`childNodes`** property of the Node interface returns a live the first child node is assigned index `0`.
21957
+ * The read-only **`childNodes`** property of the Node interface returns a live NodeList of child Node of the given element where the first child node is assigned index `0`.
21958
21958
  *
21959
21959
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/childNodes)
21960
21960
  */
@@ -22020,7 +22020,7 @@ interface Node extends EventTarget {
22020
22020
  */
22021
22021
  readonly parentNode: ParentNode | null;
22022
22022
  /**
22023
- * The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's or `null` if the specified node is the first in that list.
22023
+ * The read-only **`previousSibling`** property of the Node interface returns the node immediately preceding the specified one in its parent's Node.childNodes list, or `null` if the specified node is the first in that list.
22024
22024
  *
22025
22025
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/previousSibling)
22026
22026
  */
@@ -22203,19 +22203,19 @@ interface NodeIterator {
22203
22203
  */
22204
22204
  readonly filter: NodeFilter | null;
22205
22205
  /**
22206
- * The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the A boolean.
22206
+ * The **`NodeIterator.pointerBeforeReferenceNode`** read-only property returns a boolean flag that indicates whether the `NodeFilter` is anchored before (if this value is `true`) or after (if this value is `false`) the anchor node indicated by the NodeIterator.referenceNode property.
22207
22207
  *
22208
22208
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/pointerBeforeReferenceNode)
22209
22209
  */
22210
22210
  readonly pointerBeforeReferenceNode: boolean;
22211
22211
  /**
22212
- * The **`NodeIterator.referenceNode`** read-only property returns the iterator remains anchored to the reference node as specified by this property.
22212
+ * The **`NodeIterator.referenceNode`** read-only property returns the Node to which the iterator is anchored; as new nodes are inserted, the iterator remains anchored to the reference node as specified by this property.
22213
22213
  *
22214
22214
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/referenceNode)
22215
22215
  */
22216
22216
  readonly referenceNode: Node;
22217
22217
  /**
22218
- * The **`NodeIterator.root`** read-only property represents the traverses.
22218
+ * The **`NodeIterator.root`** read-only property represents the Node that is the root of what the NodeIterator traverses.
22219
22219
  *
22220
22220
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NodeIterator/root)
22221
22221
  */
@@ -22323,13 +22323,13 @@ interface NotificationEventMap {
22323
22323
  */
22324
22324
  interface Notification extends EventTarget {
22325
22325
  /**
22326
- * The **`body`** read-only property of the specified in the `body` option of the A string.
22326
+ * The **`body`** read-only property of the Notification interface indicates the body string of the notification, as specified in the `body` option of the Notification.Notification constructor.
22327
22327
  *
22328
22328
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body)
22329
22329
  */
22330
22330
  readonly body: string;
22331
22331
  /**
22332
- * The **`data`** read-only property of the data, as specified in the `data` option of the The notification's data can be any arbitrary data that you want associated with the notification.
22332
+ * The **`data`** read-only property of the Notification interface returns a structured clone of the notification's data, as specified in the `data` option of the Notification.Notification constructor.
22333
22333
  *
22334
22334
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data)
22335
22335
  */
@@ -22341,13 +22341,13 @@ interface Notification extends EventTarget {
22341
22341
  */
22342
22342
  readonly dir: NotificationDirection;
22343
22343
  /**
22344
- * The **`icon`** read-only property of the part of the notification, as specified in the `icon` option of the A string.
22344
+ * The **`icon`** read-only property of the Notification interface contains the URL of an icon to be displayed as part of the notification, as specified in the `icon` option of the Notification.Notification constructor.
22345
22345
  *
22346
22346
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/icon)
22347
22347
  */
22348
22348
  readonly icon: string;
22349
22349
  /**
22350
- * The **`lang`** read-only property of the as specified in the `lang` option of the The language itself is specified using a string representing a language tag according to MISSING: RFC(5646, 'Tags for Identifying Languages (also known as BCP 47)')].
22350
+ * The **`lang`** read-only property of the Notification interface indicates the language used in the notification, as specified in the `lang` option of the Notification.Notification constructor.
22351
22351
  *
22352
22352
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/lang)
22353
22353
  */
@@ -22367,19 +22367,19 @@ interface Notification extends EventTarget {
22367
22367
  */
22368
22368
  readonly requireInteraction: boolean;
22369
22369
  /**
22370
- * The **`silent`** read-only property of the silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
22370
+ * The **`silent`** read-only property of the Notification interface specifies whether the notification should be silent, i.e., no sounds or vibrations should be issued regardless of the device settings.
22371
22371
  *
22372
22372
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent)
22373
22373
  */
22374
22374
  readonly silent: boolean | null;
22375
22375
  /**
22376
- * The **`tag`** read-only property of the as specified in the `tag` option of the The idea of notification tags is that more than one notification can share the same tag, linking them together.
22376
+ * The **`tag`** read-only property of the Notification interface signifies an identifying tag for the notification, as specified in the `tag` option of the Notification.Notification constructor.
22377
22377
  *
22378
22378
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag)
22379
22379
  */
22380
22380
  readonly tag: string;
22381
22381
  /**
22382
- * The **`title`** read-only property of the specified in the `title` parameter of the A string.
22382
+ * The **`title`** read-only property of the Notification interface indicates the title of the notification, as specified in the `title` parameter of the Notification.Notification constructor.
22383
22383
  *
22384
22384
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/title)
22385
22385
  */
@@ -22534,13 +22534,13 @@ interface OES_vertex_array_object {
22534
22534
  */
22535
22535
  bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
22536
22536
  /**
22537
- * The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a pointing to vertex array data and which provides names for different sets of vertex data.
22537
+ * The **`OES_vertex_array_object.createVertexArrayOES()`** method of the WebGL API creates and initializes a WebGLVertexArrayObject object that represents a vertex array object (VAO) pointing to vertex array data and which provides names for different sets of vertex data.
22538
22538
  *
22539
22539
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/createVertexArrayOES)
22540
22540
  */
22541
22541
  createVertexArrayOES(): WebGLVertexArrayObjectOES;
22542
22542
  /**
22543
- * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given ```js-nolint deleteVertexArrayOES(arrayObject) ``` - `arrayObject` - : A WebGLVertexArrayObject (VAO) object to delete.
22543
+ * The **`OES_vertex_array_object.deleteVertexArrayOES()`** method of the WebGL API deletes a given WebGLVertexArrayObject object.
22544
22544
  *
22545
22545
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES)
22546
22546
  */
@@ -22579,7 +22579,7 @@ interface OVR_multiview2 {
22579
22579
  */
22580
22580
  interface OfflineAudioCompletionEvent extends Event {
22581
22581
  /**
22582
- * The **`renderedBuffer`** read-only property of the containing the result of processing an OfflineAudioContext.
22582
+ * The **`renderedBuffer`** read-only property of the OfflineAudioCompletionEvent interface is an AudioBuffer containing the result of processing an OfflineAudioContext.
22583
22583
  *
22584
22584
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioCompletionEvent/renderedBuffer)
22585
22585
  */
@@ -22602,7 +22602,7 @@ interface OfflineAudioContextEventMap extends BaseAudioContextEventMap {
22602
22602
  */
22603
22603
  interface OfflineAudioContext extends BaseAudioContext {
22604
22604
  /**
22605
- * The **`length`** property of the the buffer in sample-frames.
22605
+ * The **`length`** property of the OfflineAudioContext interface returns an integer representing the size of the buffer in sample-frames.
22606
22606
  *
22607
22607
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/length)
22608
22608
  */
@@ -22610,7 +22610,7 @@ interface OfflineAudioContext extends BaseAudioContext {
22610
22610
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/complete_event) */
22611
22611
  oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null;
22612
22612
  /**
22613
- * The **`resume()`** method of the context that has been suspended.
22613
+ * The **`resume()`** method of the OfflineAudioContext interface resumes the progression of time in an audio context that has been suspended.
22614
22614
  *
22615
22615
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OfflineAudioContext/resume)
22616
22616
  */
@@ -22739,7 +22739,7 @@ interface OscillatorNode extends AudioScheduledSourceNode {
22739
22739
  */
22740
22740
  type: OscillatorType;
22741
22741
  /**
22742
- * The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when ```js-nolint setPeriodicWave(wave) ``` - `wave` - : A PeriodicWave object representing the waveform to use as the shape of the oscillator's output.
22742
+ * The **`setPeriodicWave()`** method of the OscillatorNode interface is used to point to a PeriodicWave defining a periodic waveform that can be used to shape the oscillator's output, when OscillatorNode.type is `custom`.
22743
22743
  *
22744
22744
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OscillatorNode/setPeriodicWave)
22745
22745
  */
@@ -22762,7 +22762,7 @@ declare var OscillatorNode: {
22762
22762
  */
22763
22763
  interface OverconstrainedError extends DOMException {
22764
22764
  /**
22765
- * The **`constraint`** read-only property of the in the constructor, meaning the constraint that was not satisfied.
22765
+ * The **`constraint`** read-only property of the OverconstrainedError interface returns the constraint that was supplied in the constructor, meaning the constraint that was not satisfied.
22766
22766
  *
22767
22767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint)
22768
22768
  */
@@ -23155,7 +23155,7 @@ interface PaymentRequestEventMap {
23155
23155
  */
23156
23156
  interface PaymentRequest extends EventTarget {
23157
23157
  /**
23158
- * The **`id`** read-only attribute of the When constructing an instance of the PaymentRequest, you are able to supply an custom id.
23158
+ * The **`id`** read-only attribute of the PaymentRequest interface returns a unique identifier for a particular PaymentRequest instance.
23159
23159
  *
23160
23160
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/id)
23161
23161
  */
@@ -23189,7 +23189,7 @@ interface PaymentRequest extends EventTarget {
23189
23189
  */
23190
23190
  readonly shippingOption: string | null;
23191
23191
  /**
23192
- * The **`shippingType`** read-only property of the `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
23192
+ * The **`shippingType`** read-only property of the PaymentRequest interface returns one of `'shipping'`, `'delivery'`, `'pickup'`, or `null` if one was not provided by the constructor.
23193
23193
  * @deprecated
23194
23194
  *
23195
23195
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequest/shippingType)
@@ -23232,7 +23232,7 @@ declare var PaymentRequest: {
23232
23232
  */
23233
23233
  interface PaymentRequestUpdateEvent extends Event {
23234
23234
  /**
23235
- * The **`updateWith()`** method of the ```js-nolint updateWith(details) ``` - `details` - : Either an object or a Promise that resolves to an object, specifying the changes applied to the payment request: - `displayItems` MISSING: optional_inline] - : An array of objects, each describing one line item for the payment request.
23235
+ * The **`updateWith()`** method of the PaymentRequestUpdateEvent interface updates the details of an existing PaymentRequest.
23236
23236
  *
23237
23237
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentRequestUpdateEvent/updateWith)
23238
23238
  */
@@ -23256,7 +23256,7 @@ interface PaymentResponseEventMap {
23256
23256
  */
23257
23257
  interface PaymentResponse extends EventTarget {
23258
23258
  /**
23259
- * The **`details`** read-only property of the provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.
23259
+ * The **`details`** read-only property of the PaymentResponse interface returns a JSON-serializable object that provides a payment method specific message used by the merchant to process the transaction and determine a successful funds transfer.
23260
23260
  *
23261
23261
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/details)
23262
23262
  */
@@ -23276,7 +23276,7 @@ interface PaymentResponse extends EventTarget {
23276
23276
  */
23277
23277
  readonly payerEmail: string | null;
23278
23278
  /**
23279
- * The **`payerName`** read-only property of the option is only present when the `requestPayerName` option is set to `true` in the options parameter of the A string containing the payer name.
23279
+ * The **`payerName`** read-only property of the PaymentResponse interface returns the name supplied by the user.
23280
23280
  *
23281
23281
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/payerName)
23282
23282
  */
@@ -23288,7 +23288,7 @@ interface PaymentResponse extends EventTarget {
23288
23288
  */
23289
23289
  readonly payerPhone: string | null;
23290
23290
  /**
23291
- * The **`requestId`** read-only property of the the `PaymentResponse()` constructor by details.id.
23291
+ * The **`requestId`** read-only property of the PaymentResponse interface returns the free-form identifier supplied by the `PaymentResponse()` constructor by details.id.
23292
23292
  *
23293
23293
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/requestId)
23294
23294
  */
@@ -23306,7 +23306,7 @@ interface PaymentResponse extends EventTarget {
23306
23306
  */
23307
23307
  readonly shippingOption: string | null;
23308
23308
  /**
23309
- * The PaymentRequest method **`complete()`** of the Payment Request API notifies the user interface to be closed.
23309
+ * The PaymentRequest method **`complete()`** of the Payment Request API notifies the user agent that the user interaction is over, and causes any remaining user interface to be closed.
23310
23310
  *
23311
23311
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/complete)
23312
23312
  */
@@ -23892,7 +23892,7 @@ interface PerformanceResourceTiming extends PerformanceEntry {
23892
23892
  */
23893
23893
  readonly transferSize: number;
23894
23894
  /**
23895
- * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a The `workerStart` property can have the following values: - A DOMHighResTimeStamp.
23895
+ * The **`workerStart`** read-only property of the PerformanceResourceTiming interface returns a DOMHighResTimeStamp immediately before dispatching the FetchEvent if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running.
23896
23896
  *
23897
23897
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/workerStart)
23898
23898
  */
@@ -23983,7 +23983,7 @@ interface PerformanceTiming {
23983
23983
  */
23984
23984
  readonly domContentLoadedEventEnd: number;
23985
23985
  /**
23986
- * The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the executed right after parsing has been executed.
23986
+ * The legacy **`PerformanceTiming.domContentLoadedEventStart`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, right before the parser sent the Document/DOMContentLoaded_event event, that is right after all the scripts that need to be executed right after parsing has been executed.
23987
23987
  * @deprecated
23988
23988
  *
23989
23989
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domContentLoadedEventStart)
@@ -23997,7 +23997,7 @@ interface PerformanceTiming {
23997
23997
  */
23998
23998
  readonly domInteractive: number;
23999
23999
  /**
24000
- * The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its corresponding Document/readystatechange_event event is thrown.
24000
+ * The legacy **`PerformanceTiming.domLoading`** read-only property returns an `unsigned long long` representing the moment, in milliseconds since the UNIX epoch, when the parser started its work, that is when its Document.readyState changes to `'loading'` and the corresponding Document/readystatechange_event event is thrown.
24001
24001
  * @deprecated
24002
24002
  *
24003
24003
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/domLoading)
@@ -24148,7 +24148,7 @@ interface PermissionStatus extends EventTarget {
24148
24148
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/change_event) */
24149
24149
  onchange: ((this: PermissionStatus, ev: Event) => any) | null;
24150
24150
  /**
24151
- * The **`state`** read-only property of the This property returns one of `'granted'`, `'denied'`, or `'prompt'`.
24151
+ * The **`state`** read-only property of the PermissionStatus interface returns the state of a requested permission.
24152
24152
  *
24153
24153
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)
24154
24154
  */
@@ -24165,7 +24165,7 @@ declare var PermissionStatus: {
24165
24165
  };
24166
24166
 
24167
24167
  /**
24168
- * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions - Permissions.query - : Returns the user permission status for a given API.
24168
+ * The **`Permissions`** interface of the Permissions API provides the core Permission API functionality, such as methods for querying and revoking permissions
24169
24169
  *
24170
24170
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Permissions)
24171
24171
  */
@@ -24323,13 +24323,13 @@ interface PointerEvent extends MouseEvent {
24323
24323
  */
24324
24324
  readonly azimuthAngle: number;
24325
24325
  /**
24326
- * The **`height`** read-only property of the geometry, along the y-axis (in CSS pixels).
24326
+ * The **`height`** read-only property of the PointerEvent interface represents the height of the pointer's contact geometry, along the y-axis (in CSS pixels).
24327
24327
  *
24328
24328
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/height)
24329
24329
  */
24330
24330
  readonly height: number;
24331
24331
  /**
24332
- * The **`isPrimary`** read-only property of the created the event is the _primary_ pointer.
24332
+ * The **`isPrimary`** read-only property of the PointerEvent interface indicates whether or not the pointer device that created the event is the _primary_ pointer.
24333
24333
  *
24334
24334
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/isPrimary)
24335
24335
  */
@@ -24341,25 +24341,25 @@ interface PointerEvent extends MouseEvent {
24341
24341
  */
24342
24342
  readonly persistentDeviceId: number;
24343
24343
  /**
24344
- * The **`pointerId`** read-only property of the event.
24344
+ * The **`pointerId`** read-only property of the PointerEvent interface is an identifier assigned to a given pointer event.
24345
24345
  *
24346
24346
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerId)
24347
24347
  */
24348
24348
  readonly pointerId: number;
24349
24349
  /**
24350
- * The **`pointerType`** read-only property of the that caused a given pointer event.
24350
+ * The **`pointerType`** read-only property of the PointerEvent interface indicates the device type (mouse, pen, or touch) that caused a given pointer event.
24351
24351
  *
24352
24352
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pointerType)
24353
24353
  */
24354
24354
  readonly pointerType: string;
24355
24355
  /**
24356
- * The **`pressure`** read-only property of the input.
24356
+ * The **`pressure`** read-only property of the PointerEvent interface indicates the normalized pressure of the pointer input.
24357
24357
  *
24358
24358
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/pressure)
24359
24359
  */
24360
24360
  readonly pressure: number;
24361
24361
  /**
24362
- * The **`tangentialPressure`** read-only property of the the pointer input (also known as barrel pressure or cylinder stress).
24362
+ * The **`tangentialPressure`** read-only property of the PointerEvent interface represents the normalized tangential pressure of the pointer input (also known as barrel pressure or cylinder stress).
24363
24363
  *
24364
24364
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/tangentialPressure)
24365
24365
  */
@@ -24377,13 +24377,13 @@ interface PointerEvent extends MouseEvent {
24377
24377
  */
24378
24378
  readonly tiltY: number;
24379
24379
  /**
24380
- * The **`twist`** read-only property of the (e.g., pen stylus) around its major axis, in degrees.
24380
+ * The **`twist`** read-only property of the PointerEvent interface represents the clockwise rotation of the pointer (e.g., pen stylus) around its major axis, in degrees.
24381
24381
  *
24382
24382
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/twist)
24383
24383
  */
24384
24384
  readonly twist: number;
24385
24385
  /**
24386
- * The **`width`** read-only property of the geometry along the x-axis, measured in CSS pixels.
24386
+ * The **`width`** read-only property of the PointerEvent interface represents the width of the pointer's contact geometry along the x-axis, measured in CSS pixels.
24387
24387
  *
24388
24388
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PointerEvent/width)
24389
24389
  */
@@ -24467,7 +24467,7 @@ declare var ProcessingInstruction: {
24467
24467
  */
24468
24468
  interface ProgressEvent<T extends EventTarget = EventTarget> extends Event {
24469
24469
  /**
24470
- * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the A boolean.
24470
+ * The **`ProgressEvent.lengthComputable`** read-only property is a boolean flag indicating if the resource concerned by the ProgressEvent has a length that can be calculated.
24471
24471
  *
24472
24472
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ProgressEvent/lengthComputable)
24473
24473
  */
@@ -24499,7 +24499,7 @@ declare var ProgressEvent: {
24499
24499
  */
24500
24500
  interface PromiseRejectionEvent extends Event {
24501
24501
  /**
24502
- * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected.
24502
+ * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript Promise which was rejected.
24503
24503
  *
24504
24504
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise)
24505
24505
  */
@@ -24531,13 +24531,13 @@ interface PublicKeyCredential extends Credential {
24531
24531
  */
24532
24532
  readonly authenticatorAttachment: string | null;
24533
24533
  /**
24534
- * The **`rawId`** read-only property of the containing the identifier of the credentials.
24534
+ * The **`rawId`** read-only property of the PublicKeyCredential interface is an ArrayBuffer object containing the identifier of the credentials.
24535
24535
  *
24536
24536
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId)
24537
24537
  */
24538
24538
  readonly rawId: ArrayBuffer;
24539
24539
  /**
24540
- * The **`response`** read-only property of the object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
24540
+ * The **`response`** read-only property of the PublicKeyCredential interface is an AuthenticatorResponse object which is sent from the authenticator to the user agent for the creation/fetching of credentials.
24541
24541
  *
24542
24542
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/response)
24543
24543
  */
@@ -24623,7 +24623,7 @@ interface PushManager {
24623
24623
  */
24624
24624
  getSubscription(): Promise<PushSubscription | null>;
24625
24625
  /**
24626
- * The **`permissionState()`** method of the string indicating the permission state of the push manager.
24626
+ * The **`permissionState()`** method of the PushManager interface returns a Promise that resolves to a string indicating the permission state of the push manager.
24627
24627
  *
24628
24628
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushManager/permissionState)
24629
24629
  */
@@ -24655,13 +24655,13 @@ declare var PushManager: {
24655
24655
  */
24656
24656
  interface PushSubscription {
24657
24657
  /**
24658
- * The **`endpoint`** read-only property of the the endpoint associated with the push subscription.
24658
+ * The **`endpoint`** read-only property of the PushSubscription interface returns a string containing the endpoint associated with the push subscription.
24659
24659
  *
24660
24660
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/endpoint)
24661
24661
  */
24662
24662
  readonly endpoint: string;
24663
24663
  /**
24664
- * The **`expirationTime`** read-only property of the of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
24664
+ * The **`expirationTime`** read-only property of the PushSubscription interface returns a DOMHighResTimeStamp of the subscription expiration time associated with the push subscription, if there is one, or `null` otherwise.
24665
24665
  *
24666
24666
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PushSubscription/expirationTime)
24667
24667
  */
@@ -24824,7 +24824,7 @@ interface RTCDataChannelEventMap {
24824
24824
  */
24825
24825
  interface RTCDataChannel extends EventTarget {
24826
24826
  /**
24827
- * The property **`binaryType`** on the the type of object which should be used to represent binary data received on the RTCDataChannel.
24827
+ * The property **`binaryType`** on the RTCDataChannel interface is a string which specifies the type of object which should be used to represent binary data received on the RTCDataChannel.
24828
24828
  *
24829
24829
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/binaryType)
24830
24830
  */
@@ -24866,7 +24866,7 @@ interface RTCDataChannel extends EventTarget {
24866
24866
  */
24867
24867
  readonly maxRetransmits: number | null;
24868
24868
  /**
24869
- * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the (`true`) or by the WebRTC layer (`false`).
24869
+ * The read-only `RTCDataChannel` property **`negotiated`** indicates whether the RTCDataChannel's connection was negotiated by the Web app (`true`) or by the WebRTC layer (`false`).
24870
24870
  *
24871
24871
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/negotiated)
24872
24872
  */
@@ -24902,13 +24902,13 @@ interface RTCDataChannel extends EventTarget {
24902
24902
  */
24903
24903
  readonly readyState: RTCDataChannelState;
24904
24904
  /**
24905
- * The **`RTCDataChannel.close()`** method closes the closure of the channel.
24905
+ * The **`RTCDataChannel.close()`** method closes the RTCDataChannel.
24906
24906
  *
24907
24907
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/close)
24908
24908
  */
24909
24909
  close(): void;
24910
24910
  /**
24911
- * The **`send()`** method of the remote peer.
24911
+ * The **`send()`** method of the RTCDataChannel interface sends data across the data channel to the remote peer.
24912
24912
  *
24913
24913
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDataChannel/send)
24914
24914
  */
@@ -24967,7 +24967,7 @@ interface RTCDtlsTransport extends EventTarget {
24967
24967
  onerror: ((this: RTCDtlsTransport, ev: RTCErrorEvent) => any) | null;
24968
24968
  onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
24969
24969
  /**
24970
- * The **`state`** read-only property of the Datagram Transport Layer Security (**DTLS**) transport state.
24970
+ * The **`state`** read-only property of the RTCDtlsTransport interface provides information which describes a Datagram Transport Layer Security (**DTLS**) transport state.
24971
24971
  *
24972
24972
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state)
24973
24973
  */
@@ -25063,19 +25063,19 @@ interface RTCError extends DOMException {
25063
25063
  */
25064
25064
  readonly receivedAlert: number | null;
25065
25065
  /**
25066
- * The read-only **`sctpCauseCode`** property in an why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
25066
+ * The read-only **`sctpCauseCode`** property in an RTCError object provides the SCTP cause code explaining why the SCTP negotiation failed, if the `RTCError` represents an SCTP error.
25067
25067
  *
25068
25068
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sctpCauseCode)
25069
25069
  */
25070
25070
  readonly sctpCauseCode: number | null;
25071
25071
  /**
25072
- * The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the An unsigned integer value indicating the line within the SDP at which the syntax error described by the `RTCError` object occurred.
25072
+ * The RTCError interface's read-only property **`sdpLineNumber`** specifies the line number within the SDP at which a syntax error occurred while parsing it.
25073
25073
  *
25074
25074
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sdpLineNumber)
25075
25075
  */
25076
25076
  readonly sdpLineNumber: number | null;
25077
25077
  /**
25078
- * The read-only **`sentAlert`** property in an while sending data to the remote peer, if the error represents an outbound DTLS error.
25078
+ * The read-only **`sentAlert`** property in an RTCError object specifies the DTLS alert number occurred while sending data to the remote peer, if the error represents an outbound DTLS error.
25079
25079
  *
25080
25080
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCError/sentAlert)
25081
25081
  */
@@ -25213,7 +25213,7 @@ declare var RTCIceCandidate: {
25213
25213
  interface RTCIceCandidatePair {
25214
25214
  /** The **`local`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection. */
25215
25215
  local: RTCIceCandidate;
25216
- /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the viable WebRTC connection. */
25216
+ /** The **`remote`** property of the **RTCIceCandidatePair** dictionary specifies the RTCIceCandidate describing the configuration of the remote end of a viable WebRTC connection. */
25217
25217
  remote: RTCIceCandidate;
25218
25218
  }
25219
25219
 
@@ -25301,7 +25301,7 @@ interface RTCPeerConnection extends EventTarget {
25301
25301
  */
25302
25302
  readonly currentLocalDescription: RTCSessionDescription | null;
25303
25303
  /**
25304
- * The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an Also included is a list of any ICE candidates that may already have been generated by the ICE agent since the offer or answer represented by the description was first instantiated.
25304
+ * The **`currentRemoteDescription`** read-only property of the RTCPeerConnection interface returns an RTCSessionDescription object describing the remote end of the connection as it was most recently successfully negotiated since the last time the RTCPeerConnection finished negotiating and connecting to a remote peer.
25305
25305
  *
25306
25306
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/currentRemoteDescription)
25307
25307
  */
@@ -25531,7 +25531,7 @@ declare var RTCPeerConnectionIceErrorEvent: {
25531
25531
  */
25532
25532
  interface RTCPeerConnectionIceEvent extends Event {
25533
25533
  /**
25534
- * The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the An RTCIceCandidate object representing the ICE candidate that has been received, or `null` to indicate that there are no further candidates for this negotiation session.
25534
+ * The read-only **`candidate`** property of the RTCPeerConnectionIceEvent interface returns the RTCIceCandidate associated with the event.
25535
25535
  *
25536
25536
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceEvent/candidate)
25537
25537
  */
@@ -25556,7 +25556,7 @@ interface RTCRtpReceiver {
25556
25556
  */
25557
25557
  jitterBufferTarget: DOMHighResTimeStamp | null;
25558
25558
  /**
25559
- * The **`track`** read-only property of the associated with the current RTCRtpReceiver instance.
25559
+ * The **`track`** read-only property of the RTCRtpReceiver interface returns the MediaStreamTrack associated with the current RTCRtpReceiver instance.
25560
25560
  *
25561
25561
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track)
25562
25562
  */
@@ -25568,7 +25568,7 @@ interface RTCRtpReceiver {
25568
25568
  */
25569
25569
  transform: RTCRtpTransform | null;
25570
25570
  /**
25571
- * The read-only **`transport`** property of an used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
25571
+ * The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
25572
25572
  *
25573
25573
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport)
25574
25574
  */
@@ -25630,7 +25630,7 @@ declare var RTCRtpScriptTransform: {
25630
25630
  */
25631
25631
  interface RTCRtpSender {
25632
25632
  /**
25633
- * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a over the RTCPeerConnection.
25633
+ * The read-only **`dtmf`** property on the **RTCRtpSender** interface returns a RTCDTMFSender object which can be used to send DTMF tones over the RTCPeerConnection.
25634
25634
  *
25635
25635
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/dtmf)
25636
25636
  */
@@ -25648,7 +25648,7 @@ interface RTCRtpSender {
25648
25648
  */
25649
25649
  transform: RTCRtpTransform | null;
25650
25650
  /**
25651
- * The read-only **`transport`** property of an used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
25651
+ * The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
25652
25652
  *
25653
25653
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport)
25654
25654
  */
@@ -25721,13 +25721,13 @@ interface RTCRtpTransceiver {
25721
25721
  */
25722
25722
  readonly mid: string | null;
25723
25723
  /**
25724
- * The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the data for the transceiver's stream.
25724
+ * The read-only **`receiver`** property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpReceiver responsible for receiving and decoding incoming media data for the transceiver's stream.
25725
25725
  *
25726
25726
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/receiver)
25727
25727
  */
25728
25728
  readonly receiver: RTCRtpReceiver;
25729
25729
  /**
25730
- * The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the for the transceiver's stream.
25730
+ * The read-only **`sender`** property of WebRTC's RTCRtpTransceiver interface indicates the RTCRtpSender responsible for encoding and sending outgoing media data for the transceiver's stream.
25731
25731
  *
25732
25732
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/sender)
25733
25733
  */
@@ -25739,7 +25739,7 @@ interface RTCRtpTransceiver {
25739
25739
  */
25740
25740
  setCodecPreferences(codecs: RTCRtpCodec[]): void;
25741
25741
  /**
25742
- * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and ```js-nolint stop() ``` None.
25742
+ * The **`stop()`** method in the RTCRtpTransceiver interface permanently stops the transceiver by stopping both the associated RTCRtpSender and RTCRtpReceiver.
25743
25743
  *
25744
25744
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpTransceiver/stop)
25745
25745
  */
@@ -25817,7 +25817,7 @@ interface RTCSessionDescription {
25817
25817
  */
25818
25818
  readonly type: RTCSdpType;
25819
25819
  /**
25820
- * The **`RTCSessionDescription.toJSON()`** method generates a ```js-nolint toJSON() ``` None.
25820
+ * The **`RTCSessionDescription.toJSON()`** method generates a JSON description of the object.
25821
25821
  *
25822
25822
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSessionDescription/toJSON)
25823
25823
  */
@@ -25850,25 +25850,25 @@ declare var RTCStatsReport: {
25850
25850
  */
25851
25851
  interface RTCTrackEvent extends Event {
25852
25852
  /**
25853
- * The read-only **`receiver`** property of the RTCTrackEvent interface indicates the The RTCRtpReceiver which pairs the `receiver` with a sender and other properties which establish a single bidirectional RTP stream for use by the RTCTrackEvent.track associated with the `RTCTrackEvent`.
25853
+ * The read-only **`receiver`** property of the RTCTrackEvent interface indicates the RTCRtpReceiver which is used to receive data containing media for the RTCTrackEvent.track to which the event refers.
25854
25854
  *
25855
25855
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/receiver)
25856
25856
  */
25857
25857
  readonly receiver: RTCRtpReceiver;
25858
25858
  /**
25859
- * The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of track being added to the RTCPeerConnection.
25859
+ * The WebRTC API interface RTCTrackEvent's read-only **`streams`** property specifies an array of MediaStream objects, one for each of the streams that comprise the track being added to the RTCPeerConnection.
25860
25860
  *
25861
25861
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/streams)
25862
25862
  */
25863
25863
  readonly streams: ReadonlyArray<MediaStream>;
25864
25864
  /**
25865
- * The
25865
+ * The WebRTC API interface RTCTrackEvent's read-only **`track`** property specifies the MediaStreamTrack that has been added to the RTCPeerConnection.
25866
25866
  *
25867
25867
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/track)
25868
25868
  */
25869
25869
  readonly track: MediaStreamTrack;
25870
25870
  /**
25871
- * The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the The transceiver pairs the track's The RTCRtpTransceiver which pairs the `receiver` with a sender and other properties which establish a single bidirectional RTP stream for use by the RTCTrackEvent.track associated with the `RTCTrackEvent`.
25871
+ * The WebRTC API interface RTCTrackEvent's read-only **`transceiver`** property indicates the RTCRtpTransceiver affiliated with the event's RTCTrackEvent.track.
25872
25872
  *
25873
25873
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCTrackEvent/transceiver)
25874
25874
  */
@@ -25918,13 +25918,13 @@ interface Range extends AbstractRange {
25918
25918
  */
25919
25919
  cloneContents(): DocumentFragment;
25920
25920
  /**
25921
- * The **`Range.cloneRange()`** method returns a The returned clone is copied by value, not reference, so a change in either ```js-nolint cloneRange() ``` None.
25921
+ * The **`Range.cloneRange()`** method returns a Range object with boundary points identical to the cloned Range.
25922
25922
  *
25923
25923
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/cloneRange)
25924
25924
  */
25925
25925
  cloneRange(): Range;
25926
25926
  /**
25927
- * The **`collapse()`** method of the Range interface collapses the A collapsed Range is empty, containing no content, specifying a single-point in a DOM tree.
25927
+ * The **`collapse()`** method of the Range interface collapses the Range to one of its boundary points.
25928
25928
  *
25929
25929
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/collapse)
25930
25930
  */
@@ -25942,7 +25942,7 @@ interface Range extends AbstractRange {
25942
25942
  */
25943
25943
  comparePoint(node: Node, offset: number): number;
25944
25944
  /**
25945
- * The **`Range.createContextualFragment()`** method returns a XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.
25945
+ * The **`Range.createContextualFragment()`** method returns a DocumentFragment by invoking the HTML fragment parsing algorithm or the XML fragment parsing algorithm with the start of the range (the _parent_ of the selected node) as the context node.
25946
25946
  *
25947
25947
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/createContextualFragment)
25948
25948
  */
@@ -25996,7 +25996,7 @@ interface Range extends AbstractRange {
25996
25996
  */
25997
25997
  isPointInRange(node: Node, offset: number): boolean;
25998
25998
  /**
25999
- * The **`Range.selectNode()`** method sets the the parent of the _referenceNode_.
25999
+ * The **`Range.selectNode()`** method sets the Range to contain the Node and its contents.
26000
26000
  *
26001
26001
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/selectNode)
26002
26002
  */
@@ -26014,7 +26014,7 @@ interface Range extends AbstractRange {
26014
26014
  */
26015
26015
  setEnd(node: Node, offset: number): void;
26016
26016
  /**
26017
- * The **`Range.setEndAfter()`** method sets the end position of a `Node` of end of the `Range` will be the same as that for the `referenceNode`.
26017
+ * The **`Range.setEndAfter()`** method sets the end position of a Range relative to another Node.
26018
26018
  *
26019
26019
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setEndAfter)
26020
26020
  */
@@ -26026,7 +26026,7 @@ interface Range extends AbstractRange {
26026
26026
  */
26027
26027
  setEndBefore(node: Node): void;
26028
26028
  /**
26029
- * The **`Range.setStart()`** method sets the start position of a If the `startNode` is a Node of type Text, the number of characters from the start of `startNode`.
26029
+ * The **`Range.setStart()`** method sets the start position of a Range.
26030
26030
  *
26031
26031
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Range/setStart)
26032
26032
  */
@@ -26147,7 +26147,7 @@ interface ReadableStream<R = any> {
26147
26147
  */
26148
26148
  pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;
26149
26149
  /**
26150
- * The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.
26150
+ * The **`tee()`** method of the ReadableStream interface tees the current readable stream, returning a two-element array containing the two resulting branches as new ReadableStream instances.
26151
26151
  *
26152
26152
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee)
26153
26153
  */
@@ -26224,7 +26224,7 @@ declare var ReadableStreamBYOBRequest: {
26224
26224
  */
26225
26225
  interface ReadableStreamDefaultController<R = any> {
26226
26226
  /**
26227
- * The **`desiredSize`** read-only property of the required to fill the stream's internal queue.
26227
+ * The **`desiredSize`** read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream's internal queue.
26228
26228
  *
26229
26229
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize)
26230
26230
  */
@@ -26236,13 +26236,13 @@ interface ReadableStreamDefaultController<R = any> {
26236
26236
  */
26237
26237
  close(): void;
26238
26238
  /**
26239
- * The **`enqueue()`** method of the ```js-nolint enqueue(chunk) ``` - `chunk` - : The chunk to enqueue.
26239
+ * The **`enqueue()`** method of the ReadableStreamDefaultController interface enqueues a given chunk in the associated stream.
26240
26240
  *
26241
26241
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue)
26242
26242
  */
26243
26243
  enqueue(chunk?: R): void;
26244
26244
  /**
26245
- * The **`error()`** method of the with the associated stream to error.
26245
+ * The **`error()`** method of the ReadableStreamDefaultController interface causes any future interactions with the associated stream to error.
26246
26246
  *
26247
26247
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error)
26248
26248
  */
@@ -26346,19 +26346,19 @@ declare var RemotePlayback: {
26346
26346
  */
26347
26347
  interface ReportingObserver {
26348
26348
  /**
26349
- * The **`disconnect()`** method of the previously started observing from collecting reports.
26349
+ * The **`disconnect()`** method of the ReportingObserver interface stops a reporting observer that had previously started observing from collecting reports.
26350
26350
  *
26351
26351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/disconnect)
26352
26352
  */
26353
26353
  disconnect(): void;
26354
26354
  /**
26355
- * The **`observe()`** method of the collecting reports in its report queue.
26355
+ * The **`observe()`** method of the ReportingObserver interface instructs a reporting observer to start collecting reports in its report queue.
26356
26356
  *
26357
26357
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/observe)
26358
26358
  */
26359
26359
  observe(): void;
26360
26360
  /**
26361
- * The **`takeRecords()`** method of the in the observer's report queue, and empties the queue.
26361
+ * The **`takeRecords()`** method of the ReportingObserver interface returns the current list of reports contained in the observer's report queue, and empties the queue.
26362
26362
  *
26363
26363
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportingObserver/takeRecords)
26364
26364
  */
@@ -26395,7 +26395,7 @@ interface Request extends Body {
26395
26395
  */
26396
26396
  readonly destination: RequestDestination;
26397
26397
  /**
26398
- * The **`headers`** read-only property of the with the request.
26398
+ * The **`headers`** read-only property of the Request interface contains the Headers object associated with the request.
26399
26399
  *
26400
26400
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers)
26401
26401
  */
@@ -26413,7 +26413,7 @@ interface Request extends Body {
26413
26413
  */
26414
26414
  readonly keepalive: boolean;
26415
26415
  /**
26416
- * The **`method`** read-only property of the `POST`, etc.) A String indicating the method of the request.
26416
+ * The **`method`** read-only property of the Request interface contains the request's method (`GET`, `POST`, etc.)
26417
26417
  *
26418
26418
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method)
26419
26419
  */
@@ -26431,13 +26431,13 @@ interface Request extends Body {
26431
26431
  */
26432
26432
  readonly redirect: RequestRedirect;
26433
26433
  /**
26434
- * The **`referrer`** read-only property of the Request.
26434
+ * The **`referrer`** read-only property of the Request interface is set by the user agent to be the referrer of the Request.
26435
26435
  *
26436
26436
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrer)
26437
26437
  */
26438
26438
  readonly referrer: string;
26439
26439
  /**
26440
- * The **`referrerPolicy`** read-only property of the referrer information, sent in the Referer header, should be included with the request.
26440
+ * The **`referrerPolicy`** read-only property of the Request interface returns the referrer policy, which governs what referrer information, sent in the Referer header, should be included with the request.
26441
26441
  *
26442
26442
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/referrerPolicy)
26443
26443
  */
@@ -26474,19 +26474,19 @@ declare var Request: {
26474
26474
  */
26475
26475
  interface ResizeObserver {
26476
26476
  /**
26477
- * The **`disconnect()`** method of the or SVGElement targets.
26477
+ * The **`disconnect()`** method of the ResizeObserver interface unobserves all observed Element or SVGElement targets.
26478
26478
  *
26479
26479
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/disconnect)
26480
26480
  */
26481
26481
  disconnect(): void;
26482
26482
  /**
26483
- * The **`observe()`** method of the ```js-nolint observe(target) observe(target, options) ``` - `target` - : A reference to an Element or SVGElement to be observed.
26483
+ * The **`observe()`** method of the ResizeObserver interface starts observing the specified Element or SVGElement.
26484
26484
  *
26485
26485
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/observe)
26486
26486
  */
26487
26487
  observe(target: Element, options?: ResizeObserverOptions): void;
26488
26488
  /**
26489
- * The **`unobserve()`** method of the ```js-nolint unobserve(target) ``` - `target` - : A reference to an Element or SVGElement to be unobserved.
26489
+ * The **`unobserve()`** method of the ResizeObserver interface ends the observing of a specified Element or SVGElement.
26490
26490
  *
26491
26491
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserver/unobserve)
26492
26492
  */
@@ -26517,7 +26517,7 @@ interface ResizeObserverEntry {
26517
26517
  */
26518
26518
  readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
26519
26519
  /**
26520
- * The `contentRect` read-only property of the object containing the new size of the observed element when the callback is run.
26520
+ * The `contentRect` read-only property of the ResizeObserverEntry interface returns a DOMRectReadOnly object containing the new size of the observed element when the callback is run.
26521
26521
  *
26522
26522
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect)
26523
26523
  */
@@ -26529,7 +26529,7 @@ interface ResizeObserverEntry {
26529
26529
  */
26530
26530
  readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
26531
26531
  /**
26532
- * The **`target`** read-only property of the An Element or SVGElement representing the element being observed.
26532
+ * The **`target`** read-only property of the ResizeObserverEntry interface returns a reference to the Element or SVGElement that is being observed.
26533
26533
  *
26534
26534
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target)
26535
26535
  */
@@ -26573,7 +26573,7 @@ declare var ResizeObserverSize: {
26573
26573
  */
26574
26574
  interface Response extends Body {
26575
26575
  /**
26576
- * The **`headers`** read-only property of the with the response.
26576
+ * The **`headers`** read-only property of the Response interface contains the Headers object associated with the response.
26577
26577
  *
26578
26578
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers)
26579
26579
  */
@@ -27160,7 +27160,7 @@ declare var SVGAnimationElement: {
27160
27160
  */
27161
27161
  interface SVGCircleElement extends SVGGeometryElement {
27162
27162
  /**
27163
- * The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.< If unspecified, the effect is as if the value is set to `0`.
27163
+ * The **`cx`** read-only property of the SVGCircleElement interface reflects the cx attribute of a circle element and by that defines the x-coordinate of the circle's center.<
27164
27164
  *
27165
27165
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGCircleElement/cx)
27166
27166
  */
@@ -28540,7 +28540,7 @@ declare var SVGGElement: {
28540
28540
  */
28541
28541
  interface SVGGeometryElement extends SVGGraphicsElement {
28542
28542
  /**
28543
- * The **`SVGGeometryElement.pathLength`** property reflects the A number.
28543
+ * The **`SVGGeometryElement.pathLength`** property reflects the pathLength attribute and returns the total length of the path, in user units.
28544
28544
  *
28545
28545
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGeometryElement/pathLength)
28546
28546
  */
@@ -28677,31 +28677,31 @@ interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
28677
28677
  */
28678
28678
  crossOrigin: string | null;
28679
28679
  /**
28680
- * The **`height`** read-only property of the corresponding to the height attribute of the given An SVGAnimatedLength.
28680
+ * The **`height`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the height attribute of the given image element.
28681
28681
  *
28682
28682
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height)
28683
28683
  */
28684
28684
  readonly height: SVGAnimatedLength;
28685
28685
  /**
28686
- * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an element.
28686
+ * The **`preserveAspectRatio`** read-only property of the SVGImageElement interface returns an SVGAnimatedPreserveAspectRatio corresponding to the preserveAspectRatio attribute of the given image element.
28687
28687
  *
28688
28688
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio)
28689
28689
  */
28690
28690
  readonly preserveAspectRatio: SVGAnimatedPreserveAspectRatio;
28691
28691
  /**
28692
- * The **`width`** read-only property of the corresponding to the width attribute of the given image element.
28692
+ * The **`width`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the width attribute of the given image element.
28693
28693
  *
28694
28694
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/width)
28695
28695
  */
28696
28696
  readonly width: SVGAnimatedLength;
28697
28697
  /**
28698
- * The **`x`** read-only property of the corresponding to the x attribute of the given image element.
28698
+ * The **`x`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the x attribute of the given image element.
28699
28699
  *
28700
28700
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/x)
28701
28701
  */
28702
28702
  readonly x: SVGAnimatedLength;
28703
28703
  /**
28704
- * The **`y`** read-only property of the corresponding to the y attribute of the given image element.
28704
+ * The **`y`** read-only property of the SVGImageElement interface returns an SVGAnimatedLength corresponding to the y attribute of the given image element.
28705
28705
  *
28706
28706
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/y)
28707
28707
  */
@@ -30343,7 +30343,7 @@ declare var SVGUnitTypes: {
30343
30343
  };
30344
30344
 
30345
30345
  /**
30346
- * The **`SVGUseElement`** interface corresponds to the use element.
30346
+ * ## SVG use DOM interface
30347
30347
  *
30348
30348
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
30349
30349
  */
@@ -30431,7 +30431,7 @@ interface Screen {
30431
30431
  */
30432
30432
  readonly height: number;
30433
30433
  /**
30434
- * The **`orientation`** read-only property of the An instance of ScreenOrientation representing the orientation of the screen.
30434
+ * The **`orientation`** read-only property of the Screen interface returns the current orientation of the screen.
30435
30435
  *
30436
30436
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Screen/orientation)
30437
30437
  */
@@ -30466,7 +30466,7 @@ interface ScreenOrientationEventMap {
30466
30466
  */
30467
30467
  interface ScreenOrientation extends EventTarget {
30468
30468
  /**
30469
- * The **`angle`** read-only property of the angle.
30469
+ * The **`angle`** read-only property of the ScreenOrientation interface returns the document's current orientation angle.
30470
30470
  *
30471
30471
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle)
30472
30472
  */
@@ -30474,13 +30474,13 @@ interface ScreenOrientation extends EventTarget {
30474
30474
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
30475
30475
  onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
30476
30476
  /**
30477
- * The **`type`** read-only property of the type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
30477
+ * The **`type`** read-only property of the ScreenOrientation interface returns the document's current orientation type, one of `portrait-primary`, `portrait-secondary`, `landscape-primary`, or `landscape-secondary`.
30478
30478
  *
30479
30479
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
30480
30480
  */
30481
30481
  readonly type: OrientationType;
30482
30482
  /**
30483
- * The **`unlock()`** method of the document from its default orientation.
30483
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30484
30484
  *
30485
30485
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30486
30486
  */
@@ -30539,13 +30539,13 @@ declare var ScriptProcessorNode: {
30539
30539
  */
30540
30540
  interface ScrollTimeline extends AnimationTimeline {
30541
30541
  /**
30542
- * The **`axis`** read-only property of the An enumerated value.
30542
+ * The **`axis`** read-only property of the ScrollTimeline interface returns an enumerated value representing the scroll axis that is driving the progress of the timeline.
30543
30543
  *
30544
30544
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/axis)
30545
30545
  */
30546
30546
  readonly axis: ScrollAxis;
30547
30547
  /**
30548
- * The **`source`** read-only property of the An Element.
30548
+ * The **`source`** read-only property of the ScrollTimeline interface returns a reference to the scrollable element (_scroller_) whose scroll position is driving the progress of the timeline and therefore the animation.
30549
30549
  *
30550
30550
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScrollTimeline/source)
30551
30551
  */
@@ -30655,7 +30655,7 @@ interface Selection {
30655
30655
  */
30656
30656
  readonly anchorNode: Node | null;
30657
30657
  /**
30658
- * The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the In the case of Selection.anchorNode being another type of node, **`Selection.anchorOffset`** returns the number of Node.childNodes the selection's anchor is offset within the Selection.anchorNode.
30658
+ * The **`Selection.anchorOffset`** read-only property returns the number of characters that the selection's anchor is offset within the Selection.anchorNode if said node is of type Text, CDATASection or Comment.
30659
30659
  *
30660
30660
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset)
30661
30661
  */
@@ -30673,7 +30673,7 @@ interface Selection {
30673
30673
  */
30674
30674
  readonly focusNode: Node | null;
30675
30675
  /**
30676
- * The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the In the case of Selection.focusNode being another type of node, **`Selection.focusOffset`** returns the number of Node.childNodes the selection's focus is offset within the Selection.focusNode.
30676
+ * The **`Selection.focusOffset`** read-only property returns the number of characters that the selection's focus is offset within the Selection.focusNode if said node is of type Text, CDATASection or Comment.
30677
30677
  *
30678
30678
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusOffset)
30679
30679
  */
@@ -30691,13 +30691,13 @@ interface Selection {
30691
30691
  */
30692
30692
  readonly rangeCount: number;
30693
30693
  /**
30694
- * The **`type`** read-only property of the type of the current selection.
30694
+ * The **`type`** read-only property of the Selection interface returns a string describing the type of the current selection.
30695
30695
  *
30696
30696
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/type)
30697
30697
  */
30698
30698
  readonly type: string;
30699
30699
  /**
30700
- * The **`Selection.addRange()`** method adds a ```js-nolint addRange(range) ``` - `range` - : A Range object that will be added to the Selection.
30700
+ * The **`Selection.addRange()`** method adds a Range to a Selection.
30701
30701
  *
30702
30702
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/addRange)
30703
30703
  */
@@ -30727,7 +30727,7 @@ interface Selection {
30727
30727
  */
30728
30728
  containsNode(node: Node, allowPartialContainment?: boolean): boolean;
30729
30729
  /**
30730
- * The **`deleteFromDocument()`** method of the ```js-nolint deleteFromDocument() ``` None.
30730
+ * The **`deleteFromDocument()`** method of the Selection interface invokes the Range.deleteContents() method on the selected Range.
30731
30731
  *
30732
30732
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/deleteFromDocument)
30733
30733
  */
@@ -30820,7 +30820,7 @@ interface ServiceWorker extends EventTarget, AbstractWorker {
30820
30820
  */
30821
30821
  readonly scriptURL: string;
30822
30822
  /**
30823
- * The **`state`** read-only property of the of the service worker.
30823
+ * The **`state`** read-only property of the ServiceWorker interface returns a string representing the current state of the service worker.
30824
30824
  *
30825
30825
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state)
30826
30826
  */
@@ -30875,13 +30875,13 @@ interface ServiceWorkerContainer extends EventTarget {
30875
30875
  */
30876
30876
  readonly ready: Promise<ServiceWorkerRegistration>;
30877
30877
  /**
30878
- * The **`getRegistration()`** method of the client URL.
30878
+ * The **`getRegistration()`** method of the ServiceWorkerContainer interface gets a ServiceWorkerRegistration object whose scope URL matches the provided client URL.
30879
30879
  *
30880
30880
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistration)
30881
30881
  */
30882
30882
  getRegistration(clientURL?: string | URL): Promise<ServiceWorkerRegistration | undefined>;
30883
30883
  /**
30884
- * The **`getRegistrations()`** method of the `ServiceWorkerContainer`, in an array.
30884
+ * The **`getRegistrations()`** method of the ServiceWorkerContainer interface gets all ServiceWorkerRegistrations associated with a `ServiceWorkerContainer`, in an array.
30885
30885
  *
30886
30886
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerContainer/getRegistrations)
30887
30887
  */
@@ -30921,7 +30921,7 @@ interface ServiceWorkerRegistrationEventMap {
30921
30921
  */
30922
30922
  interface ServiceWorkerRegistration extends EventTarget {
30923
30923
  /**
30924
- * The **`active`** read-only property of the This property is initially set to `null`.
30924
+ * The **`active`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `activating` or `activated`.
30925
30925
  *
30926
30926
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/active)
30927
30927
  */
@@ -30933,7 +30933,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30933
30933
  */
30934
30934
  readonly cookies: CookieStoreManager;
30935
30935
  /**
30936
- * The **`installing`** read-only property of the initially set to `null`.
30936
+ * The **`installing`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installing`.
30937
30937
  *
30938
30938
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/installing)
30939
30939
  */
@@ -30947,7 +30947,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30947
30947
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/updatefound_event) */
30948
30948
  onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;
30949
30949
  /**
30950
- * The **`pushManager`** read-only property of the support for subscribing, getting an active subscription, and accessing push permission status.
30950
+ * The **`pushManager`** read-only property of the ServiceWorkerRegistration interface returns a reference to the PushManager interface for managing push subscriptions; this includes support for subscribing, getting an active subscription, and accessing push permission status.
30951
30951
  *
30952
30952
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/pushManager)
30953
30953
  */
@@ -30965,7 +30965,7 @@ interface ServiceWorkerRegistration extends EventTarget {
30965
30965
  */
30966
30966
  readonly updateViaCache: ServiceWorkerUpdateViaCache;
30967
30967
  /**
30968
- * The **`waiting`** read-only property of the set to `null`.
30968
+ * The **`waiting`** read-only property of the ServiceWorkerRegistration interface returns a service worker whose ServiceWorker.state is `installed`.
30969
30969
  *
30970
30970
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/waiting)
30971
30971
  */
@@ -30977,19 +30977,19 @@ interface ServiceWorkerRegistration extends EventTarget {
30977
30977
  */
30978
30978
  getNotifications(filter?: GetNotificationOptions): Promise<Notification[]>;
30979
30979
  /**
30980
- * The **`showNotification()`** method of the service worker.
30980
+ * The **`showNotification()`** method of the ServiceWorkerRegistration interface creates a notification on an active service worker.
30981
30981
  *
30982
30982
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/showNotification)
30983
30983
  */
30984
30984
  showNotification(title: string, options?: NotificationOptions): Promise<void>;
30985
30985
  /**
30986
- * The **`unregister()`** method of the registration and returns a Promise.
30986
+ * The **`unregister()`** method of the ServiceWorkerRegistration interface unregisters the service worker registration and returns a Promise.
30987
30987
  *
30988
30988
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/unregister)
30989
30989
  */
30990
30990
  unregister(): Promise<boolean>;
30991
30991
  /**
30992
- * The **`update()`** method of the worker.
30992
+ * The **`update()`** method of the ServiceWorkerRegistration interface attempts to update the service worker.
30993
30993
  *
30994
30994
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerRegistration/update)
30995
30995
  */
@@ -31124,19 +31124,19 @@ interface SourceBufferEventMap {
31124
31124
  */
31125
31125
  interface SourceBuffer extends EventTarget {
31126
31126
  /**
31127
- * The **`appendWindowEnd`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31127
+ * The **`appendWindowEnd`** property of the SourceBuffer interface controls the timestamp for the end of the append window, a timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31128
31128
  *
31129
31129
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowEnd)
31130
31130
  */
31131
31131
  appendWindowEnd: number;
31132
31132
  /**
31133
- * The **`appendWindowStart`** property of the timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31133
+ * The **`appendWindowStart`** property of the SourceBuffer interface controls the timestamp for the start of the append window, a timestamp range that can be used to filter what media data is appended to the `SourceBuffer`.
31134
31134
  *
31135
31135
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendWindowStart)
31136
31136
  */
31137
31137
  appendWindowStart: number;
31138
31138
  /**
31139
- * The **`buffered`** read-only property of the buffered in the `SourceBuffer` as a normalized TimeRanges object.
31139
+ * The **`buffered`** read-only property of the SourceBuffer interface returns the time ranges that are currently buffered in the `SourceBuffer` as a normalized TimeRanges object.
31140
31140
  *
31141
31141
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/buffered)
31142
31142
  */
@@ -31153,13 +31153,13 @@ interface SourceBuffer extends EventTarget {
31153
31153
  onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
31154
31154
  onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
31155
31155
  /**
31156
- * The **`timestampOffset`** property of the media segments that are appended to the `SourceBuffer`.
31156
+ * The **`timestampOffset`** property of the SourceBuffer interface controls the offset applied to timestamps inside media segments that are appended to the `SourceBuffer`.
31157
31157
  *
31158
31158
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset)
31159
31159
  */
31160
31160
  timestampOffset: number;
31161
31161
  /**
31162
- * The **`updating`** read-only property of the currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
31162
+ * The **`updating`** read-only property of the SourceBuffer interface indicates whether the `SourceBuffer` is currently being updated — i.e., whether an SourceBuffer.appendBuffer() or SourceBuffer.remove() operation is currently in progress.
31163
31163
  *
31164
31164
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updating)
31165
31165
  */
@@ -31171,13 +31171,13 @@ interface SourceBuffer extends EventTarget {
31171
31171
  */
31172
31172
  abort(): void;
31173
31173
  /**
31174
- * The **`appendBuffer()`** method of the to the `SourceBuffer`.
31174
+ * The **`appendBuffer()`** method of the SourceBuffer interface appends media segment data from an ArrayBuffer, a TypedArray or a DataView object to the `SourceBuffer`.
31175
31175
  *
31176
31176
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/appendBuffer)
31177
31177
  */
31178
31178
  appendBuffer(data: BufferSource): void;
31179
31179
  /**
31180
- * The **`changeType()`** method of the data to conform to.
31180
+ * The **`changeType()`** method of the SourceBuffer interface sets the MIME type that future calls to SourceBuffer.appendBuffer should expect the new media data to conform to.
31181
31181
  *
31182
31182
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/changeType)
31183
31183
  */
@@ -31211,7 +31211,7 @@ interface SourceBufferListEventMap {
31211
31211
  */
31212
31212
  interface SourceBufferList extends EventTarget {
31213
31213
  /**
31214
- * The **`length`** read-only property of the An unsigned long number.
31214
+ * The **`length`** read-only property of the SourceBufferList interface returns the number of SourceBuffer objects in the list.
31215
31215
  *
31216
31216
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length)
31217
31217
  */
@@ -31238,13 +31238,13 @@ declare var SourceBufferList: {
31238
31238
  */
31239
31239
  interface SpeechRecognitionAlternative {
31240
31240
  /**
31241
- * The **`confidence`** read-only property of the confident the speech recognition system is that the recognition is correct.
31241
+ * The **`confidence`** read-only property of the SpeechRecognitionResult interface returns a numeric estimate of how confident the speech recognition system is that the recognition is correct.
31242
31242
  *
31243
31243
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/confidence)
31244
31244
  */
31245
31245
  readonly confidence: number;
31246
31246
  /**
31247
- * The **`transcript`** read-only property of the transcript of the recognized word(s).
31247
+ * The **`transcript`** read-only property of the SpeechRecognitionResult interface returns a string containing the transcript of the recognized word(s).
31248
31248
  *
31249
31249
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionAlternative/transcript)
31250
31250
  */
@@ -31264,13 +31264,13 @@ declare var SpeechRecognitionAlternative: {
31264
31264
  */
31265
31265
  interface SpeechRecognitionErrorEvent extends Event {
31266
31266
  /**
31267
- * The **`error`** read-only property of the A string naming the type of error.
31267
+ * The **`error`** read-only property of the SpeechRecognitionErrorEvent interface returns the type of error raised.
31268
31268
  *
31269
31269
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/error)
31270
31270
  */
31271
31271
  readonly error: SpeechRecognitionErrorCode;
31272
31272
  /**
31273
- * The **`message`** read-only property of the error in more detail.
31273
+ * The **`message`** read-only property of the SpeechRecognitionErrorEvent interface returns a message describing the error in more detail.
31274
31274
  *
31275
31275
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionErrorEvent/message)
31276
31276
  */
@@ -31290,13 +31290,13 @@ declare var SpeechRecognitionErrorEvent: {
31290
31290
  */
31291
31291
  interface SpeechRecognitionEvent extends Event {
31292
31292
  /**
31293
- * The **`resultIndex`** read-only property of the the SpeechRecognitionResultList 'array' that has actually changed.
31293
+ * The **`resultIndex`** read-only property of the SpeechRecognitionEvent interface returns the lowest index value result in the SpeechRecognitionResultList 'array' that has actually changed.
31294
31294
  *
31295
31295
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/resultIndex)
31296
31296
  */
31297
31297
  readonly resultIndex: number;
31298
31298
  /**
31299
- * The **`results`** read-only property of the recognition results for the current session.
31299
+ * The **`results`** read-only property of the SpeechRecognitionEvent interface returns a SpeechRecognitionResultList object representing all the speech recognition results for the current session.
31300
31300
  *
31301
31301
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionEvent/results)
31302
31302
  */
@@ -31316,19 +31316,19 @@ declare var SpeechRecognitionEvent: {
31316
31316
  */
31317
31317
  interface SpeechRecognitionResult {
31318
31318
  /**
31319
- * The **`isFinal`** read-only property of the whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.
31319
+ * The **`isFinal`** read-only property of the SpeechRecognitionResult interface is a boolean value that states whether this result is final (`true`) or not (`false`) — if so, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.
31320
31320
  *
31321
31321
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/isFinal)
31322
31322
  */
31323
31323
  readonly isFinal: boolean;
31324
31324
  /**
31325
- * The **`length`** read-only property of the — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.) The number of alternatives contained in the result depends on what the recognition was first initiated.
31325
+ * The **`length`** read-only property of the SpeechRecognitionResult interface returns the length of the 'array' — the number of SpeechRecognitionAlternative objects contained in the result (also referred to as 'n-best alternatives'.)
31326
31326
  *
31327
31327
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/length)
31328
31328
  */
31329
31329
  readonly length: number;
31330
31330
  /**
31331
- * The **`item`** getter of the array syntax.
31331
+ * The **`item`** getter of the SpeechRecognitionResult interface is a standard getter that allows SpeechRecognitionAlternative objects within the result to be accessed via array syntax.
31332
31332
  *
31333
31333
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResult/item)
31334
31334
  */
@@ -31349,13 +31349,13 @@ declare var SpeechRecognitionResult: {
31349
31349
  */
31350
31350
  interface SpeechRecognitionResultList {
31351
31351
  /**
31352
- * The **`length`** read-only property of the 'array' — the number of SpeechRecognitionResult objects in the list.
31352
+ * The **`length`** read-only property of the SpeechRecognitionResultList interface returns the length of the 'array' — the number of SpeechRecognitionResult objects in the list.
31353
31353
  *
31354
31354
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/length)
31355
31355
  */
31356
31356
  readonly length: number;
31357
31357
  /**
31358
- * The **`item`** getter of the syntax.
31358
+ * The **`item`** getter of the SpeechRecognitionResultList interface is a standard getter — it allows SpeechRecognitionResult objects in the list to be accessed via array syntax.
31359
31359
  *
31360
31360
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechRecognitionResultList/item)
31361
31361
  */
@@ -31381,19 +31381,19 @@ interface SpeechSynthesis extends EventTarget {
31381
31381
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/voiceschanged_event) */
31382
31382
  onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
31383
31383
  /**
31384
- * The **`paused`** read-only property of the `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
31384
+ * The **`paused`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if the `SpeechSynthesis` object is in a paused state, or `false` if not.
31385
31385
  *
31386
31386
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/paused)
31387
31387
  */
31388
31388
  readonly paused: boolean;
31389
31389
  /**
31390
- * The **`pending`** read-only property of the `true` if the utterance queue contains as-yet-unspoken utterances.
31390
+ * The **`pending`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if the utterance queue contains as-yet-unspoken utterances.
31391
31391
  *
31392
31392
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/pending)
31393
31393
  */
31394
31394
  readonly pending: boolean;
31395
31395
  /**
31396
- * The **`speaking`** read-only property of the `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a A boolean value.
31396
+ * The **`speaking`** read-only property of the SpeechSynthesis interface is a boolean value that returns `true` if an utterance is currently in the process of being spoken — even if `SpeechSynthesis` is in a SpeechSynthesis/pause() state.
31397
31397
  *
31398
31398
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/speaking)
31399
31399
  */
@@ -31405,7 +31405,7 @@ interface SpeechSynthesis extends EventTarget {
31405
31405
  */
31406
31406
  cancel(): void;
31407
31407
  /**
31408
- * The **`getVoices()`** method of the current device.
31408
+ * The **`getVoices()`** method of the SpeechSynthesis interface returns a list of SpeechSynthesisVoice objects representing all the available voices on the current device.
31409
31409
  *
31410
31410
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesis/getVoices)
31411
31411
  */
@@ -31446,7 +31446,7 @@ declare var SpeechSynthesis: {
31446
31446
  */
31447
31447
  interface SpeechSynthesisErrorEvent extends SpeechSynthesisEvent {
31448
31448
  /**
31449
- * The **`error`** property of the A string containing the error reason.
31449
+ * The **`error`** property of the SpeechSynthesisErrorEvent interface returns an error code indicating what has gone wrong with a speech synthesis attempt.
31450
31450
  *
31451
31451
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisErrorEvent/error)
31452
31452
  */
@@ -31550,7 +31550,7 @@ interface SpeechSynthesisUtterance extends EventTarget {
31550
31550
  */
31551
31551
  rate: number;
31552
31552
  /**
31553
- * The **`text`** property of the The text may be provided as plain text, or a well-formed SSML document.
31553
+ * The **`text`** property of the SpeechSynthesisUtterance interface gets and sets the text that will be synthesized when the utterance is spoken.
31554
31554
  *
31555
31555
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisUtterance/text)
31556
31556
  */
@@ -31585,7 +31585,7 @@ declare var SpeechSynthesisUtterance: {
31585
31585
  */
31586
31586
  interface SpeechSynthesisVoice {
31587
31587
  /**
31588
- * The **`default`** read-only property of the indicating whether the voice is the default voice for the current app (`true`), or not (`false`.) A boolean value.
31588
+ * The **`default`** read-only property of the SpeechSynthesisVoice interface returns a boolean value indicating whether the voice is the default voice for the current app (`true`), or not (`false`.)
31589
31589
  *
31590
31590
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/default)
31591
31591
  */
@@ -31597,19 +31597,19 @@ interface SpeechSynthesisVoice {
31597
31597
  */
31598
31598
  readonly lang: string;
31599
31599
  /**
31600
- * The **`localService`** read-only property of the indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.) This property is provided to allow differentiation in the case that some voice options are provided by a remote service; it is possible that remote voices might have extra latency, bandwidth or cost associated with them, so such distinction may be useful.
31600
+ * The **`localService`** read-only property of the SpeechSynthesisVoice interface returns a boolean value indicating whether the voice is supplied by a local speech synthesizer service (`true`), or a remote speech synthesizer service (`false`.)
31601
31601
  *
31602
31602
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/localService)
31603
31603
  */
31604
31604
  readonly localService: boolean;
31605
31605
  /**
31606
- * The **`name`** read-only property of the represents the voice.
31606
+ * The **`name`** read-only property of the SpeechSynthesisVoice interface returns a human-readable name that represents the voice.
31607
31607
  *
31608
31608
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/name)
31609
31609
  */
31610
31610
  readonly name: string;
31611
31611
  /**
31612
- * The **`voiceURI`** read-only property of the the speech synthesis service for this voice.
31612
+ * The **`voiceURI`** read-only property of the SpeechSynthesisVoice interface returns the type of URI and location of the speech synthesis service for this voice.
31613
31613
  *
31614
31614
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SpeechSynthesisVoice/voiceURI)
31615
31615
  */
@@ -31660,7 +31660,7 @@ declare var StereoPannerNode: {
31660
31660
  */
31661
31661
  interface Storage {
31662
31662
  /**
31663
- * The **`length`** read-only property of the `Storage` object.
31663
+ * The **`length`** read-only property of the Storage interface returns the number of data items stored in a given `Storage` object.
31664
31664
  *
31665
31665
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Storage/length)
31666
31666
  */
@@ -31804,7 +31804,7 @@ interface StyleMedia {
31804
31804
  */
31805
31805
  interface StylePropertyMap extends StylePropertyMapReadOnly {
31806
31806
  /**
31807
- * The **`append()`** method of the `StylePropertyMap` with the given property.
31807
+ * The **`append()`** method of the StylePropertyMap interface adds the passed CSS value to the `StylePropertyMap` with the given property.
31808
31808
  *
31809
31809
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/append)
31810
31810
  */
@@ -31816,7 +31816,7 @@ interface StylePropertyMap extends StylePropertyMapReadOnly {
31816
31816
  */
31817
31817
  clear(): void;
31818
31818
  /**
31819
- * The **`delete()`** method of the property.
31819
+ * The **`delete()`** method of the StylePropertyMap interface removes the CSS declaration with the given property.
31820
31820
  *
31821
31821
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMap/delete)
31822
31822
  */
@@ -31841,25 +31841,25 @@ declare var StylePropertyMap: {
31841
31841
  */
31842
31842
  interface StylePropertyMapReadOnly {
31843
31843
  /**
31844
- * The **`size`** read-only property of the containing the size of the `StylePropertyMapReadOnly` object.
31844
+ * The **`size`** read-only property of the StylePropertyMapReadOnly interface returns an unsigned long integer containing the size of the `StylePropertyMapReadOnly` object.
31845
31845
  *
31846
31846
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size)
31847
31847
  */
31848
31848
  readonly size: number;
31849
31849
  /**
31850
- * The **`get()`** method of the object for the first value of the specified property.
31850
+ * The **`get()`** method of the StylePropertyMapReadOnly interface returns a CSSStyleValue object for the first value of the specified property.
31851
31851
  *
31852
31852
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get)
31853
31853
  */
31854
31854
  get(property: string): undefined | CSSStyleValue;
31855
31855
  /**
31856
- * The **`getAll()`** method of the ```js-nolint getAll(property) ``` - `property` - : The name of the property to retrieve all values of.
31856
+ * The **`getAll()`** method of the StylePropertyMapReadOnly interface returns an array of CSSStyleValue objects containing the values for the provided property.
31857
31857
  *
31858
31858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll)
31859
31859
  */
31860
31860
  getAll(property: string): CSSStyleValue[];
31861
31861
  /**
31862
- * The **`has()`** method of the property is in the `StylePropertyMapReadOnly` object.
31862
+ * The **`has()`** method of the StylePropertyMapReadOnly interface indicates whether the specified property is in the `StylePropertyMapReadOnly` object.
31863
31863
  *
31864
31864
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has)
31865
31865
  */
@@ -31879,7 +31879,7 @@ declare var StylePropertyMapReadOnly: {
31879
31879
  */
31880
31880
  interface StyleSheet {
31881
31881
  /**
31882
- * The **`disabled`** property of the applying to the document.
31882
+ * The **`disabled`** property of the StyleSheet interface determines whether the style sheet is prevented from applying to the document.
31883
31883
  *
31884
31884
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/disabled)
31885
31885
  */
@@ -31898,13 +31898,13 @@ interface StyleSheet {
31898
31898
  get media(): MediaList;
31899
31899
  set media(mediaText: string);
31900
31900
  /**
31901
- * The **`ownerNode`** property of the with the document.
31901
+ * The **`ownerNode`** property of the StyleSheet interface returns the node that associates this style sheet with the document.
31902
31902
  *
31903
31903
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/ownerNode)
31904
31904
  */
31905
31905
  readonly ownerNode: Element | ProcessingInstruction | null;
31906
31906
  /**
31907
- * The **`parentStyleSheet`** property of the the given style sheet.
31907
+ * The **`parentStyleSheet`** property of the StyleSheet interface returns the style sheet, if any, that is including the given style sheet.
31908
31908
  *
31909
31909
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/parentStyleSheet)
31910
31910
  */
@@ -31987,7 +31987,7 @@ interface SubtleCrypto {
31987
31987
  */
31988
31988
  decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;
31989
31989
  /**
31990
- * The **`deriveBits()`** method of the key.
31990
+ * The **`deriveBits()`** method of the SubtleCrypto interface can be used to derive an array of bits from a base key.
31991
31991
  *
31992
31992
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits)
31993
31993
  */
@@ -32498,7 +32498,7 @@ interface TextTrackList extends EventTarget {
32498
32498
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */
32499
32499
  onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
32500
32500
  /**
32501
- * The **TextTrackList** method **`getTrackById()`** returns the first `id` matches the specified string.
32501
+ * The **TextTrackList** method **`getTrackById()`** returns the first TextTrack object from the track list whose `id` matches the specified string.
32502
32502
  *
32503
32503
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById)
32504
32504
  */
@@ -32669,7 +32669,7 @@ interface TouchEvent extends UIEvent {
32669
32669
  */
32670
32670
  readonly altKey: boolean;
32671
32671
  /**
32672
- * The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows: - For the Element/touchstart_event event, it is a list of the touch points that became active with the current event.
32672
+ * The **`changedTouches`** read-only property is a TouchList whose touch points (Touch objects) varies depending on the event type, as follows:
32673
32673
  *
32674
32674
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TouchEvent/changedTouches)
32675
32675
  */
@@ -32856,7 +32856,7 @@ declare var TransitionEvent: {
32856
32856
  */
32857
32857
  interface TreeWalker {
32858
32858
  /**
32859
- * The **`TreeWalker.currentNode`** property represents the A Node.
32859
+ * The **`TreeWalker.currentNode`** property represents the Node which the TreeWalker is currently pointing at.
32860
32860
  *
32861
32861
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/currentNode)
32862
32862
  */
@@ -32880,43 +32880,43 @@ interface TreeWalker {
32880
32880
  */
32881
32881
  readonly whatToShow: number;
32882
32882
  /**
32883
- * The **`TreeWalker.firstChild()`** method moves the current the found child.
32883
+ * The **`TreeWalker.firstChild()`** method moves the current Node to the first _visible_ child of the current node, and returns the found child.
32884
32884
  *
32885
32885
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/firstChild)
32886
32886
  */
32887
32887
  firstChild(): Node | null;
32888
32888
  /**
32889
- * The **`TreeWalker.lastChild()`** method moves the current the found child.
32889
+ * The **`TreeWalker.lastChild()`** method moves the current Node to the last _visible_ child of the current node, and returns the found child.
32890
32890
  *
32891
32891
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/lastChild)
32892
32892
  */
32893
32893
  lastChild(): Node | null;
32894
32894
  /**
32895
- * The **`TreeWalker.nextNode()`** method moves the current the found node.
32895
+ * The **`TreeWalker.nextNode()`** method moves the current Node to the next _visible_ node in the document order, and returns the found node.
32896
32896
  *
32897
32897
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextNode)
32898
32898
  */
32899
32899
  nextNode(): Node | null;
32900
32900
  /**
32901
- * The **`TreeWalker.nextSibling()`** method moves the current is no such node, it returns `null` and the current node is not changed.
32901
+ * The **`TreeWalker.nextSibling()`** method moves the current Node to its next sibling, if any, and returns the found sibling.
32902
32902
  *
32903
32903
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/nextSibling)
32904
32904
  */
32905
32905
  nextSibling(): Node | null;
32906
32906
  /**
32907
- * The **`TreeWalker.parentNode()`** method moves the current and returns the found node.
32907
+ * The **`TreeWalker.parentNode()`** method moves the current Node to the first _visible_ ancestor node in the document order, and returns the found node.
32908
32908
  *
32909
32909
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/parentNode)
32910
32910
  */
32911
32911
  parentNode(): Node | null;
32912
32912
  /**
32913
- * The **`TreeWalker.previousNode()`** method moves the current returns the found node.
32913
+ * The **`TreeWalker.previousNode()`** method moves the current Node to the previous _visible_ node in the document order, and returns the found node.
32914
32914
  *
32915
32915
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousNode)
32916
32916
  */
32917
32917
  previousNode(): Node | null;
32918
32918
  /**
32919
- * The **`TreeWalker.previousSibling()`** method moves the current there is no such node, it returns `null` and the current node is not changed.
32919
+ * The **`TreeWalker.previousSibling()`** method moves the current Node to its previous sibling, if any, and returns the found sibling.
32920
32920
  *
32921
32921
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TreeWalker/previousSibling)
32922
32922
  */
@@ -32941,7 +32941,7 @@ interface UIEvent extends Event {
32941
32941
  */
32942
32942
  readonly detail: number;
32943
32943
  /**
32944
- * The **`UIEvent.view`** read-only property returns the is the Window object the event happened in.
32944
+ * The **`UIEvent.view`** read-only property returns the WindowProxy object from which the event was generated.
32945
32945
  *
32946
32946
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/UIEvent/view)
32947
32947
  */
@@ -33035,7 +33035,7 @@ interface URL {
33035
33035
  */
33036
33036
  search: string;
33037
33037
  /**
33038
- * The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL.
33038
+ * The **`searchParams`** read-only property of the URL interface returns a URLSearchParams object allowing access to the GET decoded query arguments contained in the URL.
33039
33039
  *
33040
33040
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams)
33041
33041
  */
@@ -33047,7 +33047,7 @@ interface URL {
33047
33047
  */
33048
33048
  username: string;
33049
33049
  /**
33050
- * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as ```js-nolint toJSON() ``` None.
33050
+ * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as URL.toString().
33051
33051
  *
33052
33052
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON)
33053
33053
  */
@@ -33076,7 +33076,7 @@ declare var URL: {
33076
33076
  */
33077
33077
  parse(url: string | URL, base?: string | URL): URL | null;
33078
33078
  /**
33079
- * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling Call this method when you've finished using an object URL to let the browser know not to keep the reference to the file any longer.
33079
+ * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling URL.createObjectURL_static.
33080
33080
  *
33081
33081
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static)
33082
33082
  */
@@ -33736,7 +33736,7 @@ interface VideoPlaybackQuality {
33736
33736
  */
33737
33737
  readonly corruptedVideoFrames: number;
33738
33738
  /**
33739
- * The read-only **`creationTime`** property on the the browsing context was created this quality sample was recorded.
33739
+ * The read-only **`creationTime`** property on the VideoPlaybackQuality interface reports the number of milliseconds since the browsing context was created this quality sample was recorded.
33740
33740
  *
33741
33741
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoPlaybackQuality/creationTime)
33742
33742
  */
@@ -33798,26 +33798,26 @@ declare var ViewTimeline: {
33798
33798
  */
33799
33799
  interface ViewTransition {
33800
33800
  /**
33801
- * The **`finished`** read-only property of the `finished` will only reject in the case of a same-document (SPA) transition, if the callback passed to Document.startViewTransition() throws or returns a promise that rejects.
33801
+ * The **`finished`** read-only property of the ViewTransition interface is a Promise that fulfills once the transition animation is finished, and the new page view is visible and interactive to the user.
33802
33802
  *
33803
33803
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished)
33804
33804
  */
33805
33805
  readonly finished: Promise<void>;
33806
33806
  /**
33807
- * The **`ready`** read-only property of the `ready` will reject if the transition cannot begin.
33807
+ * The **`ready`** read-only property of the ViewTransition interface is a Promise that fulfills once the pseudo-element tree is created and the transition animation is about to start.
33808
33808
  *
33809
33809
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready)
33810
33810
  */
33811
33811
  readonly ready: Promise<void>;
33812
33812
  types: ViewTransitionTypeSet;
33813
33813
  /**
33814
- * The **`updateCallbackDone`** read-only property of the `updateCallbackDone` is useful when you don't care about the success/failure of a same-document (SPA) view transition animation, and just want to know if and when the DOM is updated.
33814
+ * The **`updateCallbackDone`** read-only property of the ViewTransition interface is a Promise that fulfills when the promise returned by the Document.startViewTransition() method's callback fulfills, or rejects when it rejects.
33815
33815
  *
33816
33816
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone)
33817
33817
  */
33818
33818
  readonly updateCallbackDone: Promise<void>;
33819
33819
  /**
33820
- * The **`skipTransition()`** method of the ```js-nolint skipTransition() ``` None.
33820
+ * The **`skipTransition()`** method of the ViewTransition interface skips the animation part of the view transition, but doesn't skip running the associated view update.
33821
33821
  *
33822
33822
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition)
33823
33823
  */
@@ -36547,7 +36547,7 @@ interface WebSocket extends EventTarget {
36547
36547
  */
36548
36548
  readonly url: string;
36549
36549
  /**
36550
- * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing.
36550
+ * The **`WebSocket.close()`** method closes the WebSocket connection or connection attempt, if any.
36551
36551
  *
36552
36552
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close)
36553
36553
  */
@@ -36756,19 +36756,19 @@ interface WheelEvent extends MouseEvent {
36756
36756
  */
36757
36757
  readonly deltaMode: number;
36758
36758
  /**
36759
- * The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the You must check the `deltaMode` property to determine the unit of the `deltaX` value.
36759
+ * The **`WheelEvent.deltaX`** read-only property is a `double` representing the horizontal scroll amount in the WheelEvent.deltaMode unit.
36760
36760
  *
36761
36761
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaX)
36762
36762
  */
36763
36763
  readonly deltaX: number;
36764
36764
  /**
36765
- * The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the You must check the `deltaMode` property to determine the unit of the `deltaY` value.
36765
+ * The **`WheelEvent.deltaY`** read-only property is a `double` representing the vertical scroll amount in the WheelEvent.deltaMode unit.
36766
36766
  *
36767
36767
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaY)
36768
36768
  */
36769
36769
  readonly deltaY: number;
36770
36770
  /**
36771
- * The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the You must check the `deltaMode` property to determine the unit of the `deltaZ` value.
36771
+ * The **`WheelEvent.deltaZ`** read-only property is a `double` representing the scroll amount along the z-axis, in the WheelEvent.deltaMode unit.
36772
36772
  *
36773
36773
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WheelEvent/deltaZ)
36774
36774
  */
@@ -36871,7 +36871,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
36871
36871
  */
36872
36872
  readonly history: History;
36873
36873
  /**
36874
- * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
36874
+ * The read-only **`innerHeight`** property of the Window interface returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present.
36875
36875
  *
36876
36876
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
36877
36877
  */
@@ -36883,7 +36883,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
36883
36883
  */
36884
36884
  readonly innerWidth: number;
36885
36885
  /**
36886
- * Returns the number of frames (either frame or A number.
36886
+ * Returns the number of frames (either frame or iframe elements) in the window.
36887
36887
  *
36888
36888
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
36889
36889
  */
@@ -37051,7 +37051,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
37051
37051
  */
37052
37052
  readonly speechSynthesis: SpeechSynthesis;
37053
37053
  /**
37054
- * The **`status`** property of the bar at the bottom of the browser window.
37054
+ * The **`status`** property of the Window interface was originally intended to set the text in the status bar at the bottom of the browser window.
37055
37055
  * @deprecated
37056
37056
  *
37057
37057
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)
@@ -37419,7 +37419,7 @@ declare var Worker: {
37419
37419
  */
37420
37420
  interface Worklet {
37421
37421
  /**
37422
- * The **`addModule()`** method of the adds it to the current `Worklet`.
37422
+ * The **`addModule()`** method of the Worklet interface loads the module in the given JavaScript file and adds it to the current `Worklet`.
37423
37423
  *
37424
37424
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worklet/addModule)
37425
37425
  */
@@ -37481,7 +37481,7 @@ interface WritableStreamDefaultController {
37481
37481
  */
37482
37482
  readonly signal: AbortSignal;
37483
37483
  /**
37484
- * The **`error()`** method of the with the associated stream to error.
37484
+ * The **`error()`** method of the WritableStreamDefaultController interface causes any future interactions with the associated stream to error.
37485
37485
  *
37486
37486
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error)
37487
37487
  */
@@ -37500,43 +37500,43 @@ declare var WritableStreamDefaultController: {
37500
37500
  */
37501
37501
  interface WritableStreamDefaultWriter<W = any> {
37502
37502
  /**
37503
- * The **`closed`** read-only property of the the stream errors or the writer's lock is released.
37503
+ * The **`closed`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that fulfills if the stream becomes closed, or rejects if the stream errors or the writer's lock is released.
37504
37504
  *
37505
37505
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed)
37506
37506
  */
37507
37507
  readonly closed: Promise<void>;
37508
37508
  /**
37509
- * The **`desiredSize`** read-only property of the to fill the stream's internal queue.
37509
+ * The **`desiredSize`** read-only property of the WritableStreamDefaultWriter interface returns the desired size required to fill the stream's internal queue.
37510
37510
  *
37511
37511
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize)
37512
37512
  */
37513
37513
  readonly desiredSize: number | null;
37514
37514
  /**
37515
- * The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
37515
+ * The **`ready`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
37516
37516
  *
37517
37517
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready)
37518
37518
  */
37519
37519
  readonly ready: Promise<void>;
37520
37520
  /**
37521
- * The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
37521
+ * The **`abort()`** method of the WritableStreamDefaultWriter interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
37522
37522
  *
37523
37523
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort)
37524
37524
  */
37525
37525
  abort(reason?: any): Promise<void>;
37526
37526
  /**
37527
- * The **`close()`** method of the stream.
37527
+ * The **`close()`** method of the WritableStreamDefaultWriter interface closes the associated writable stream.
37528
37528
  *
37529
37529
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close)
37530
37530
  */
37531
37531
  close(): Promise<void>;
37532
37532
  /**
37533
- * The **`releaseLock()`** method of the corresponding stream.
37533
+ * The **`releaseLock()`** method of the WritableStreamDefaultWriter interface releases the writer's lock on the corresponding stream.
37534
37534
  *
37535
37535
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock)
37536
37536
  */
37537
37537
  releaseLock(): void;
37538
37538
  /**
37539
- * The **`write()`** method of the operation.
37539
+ * The **`write()`** method of the WritableStreamDefaultWriter interface writes a passed chunk of data to a WritableStream and its underlying sink, then returns a Promise that resolves to indicate the success or failure of the write operation.
37540
37540
  *
37541
37541
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write)
37542
37542
  */
@@ -37810,7 +37810,7 @@ interface XPathEvaluatorBase {
37810
37810
  */
37811
37811
  interface XPathExpression {
37812
37812
  /**
37813
- * The **`evaluate()`** method of the returns an XPathResult.
37813
+ * The **`evaluate()`** method of the XPathExpression interface executes an XPath expression on the given node or document and returns an XPathResult.
37814
37814
  *
37815
37815
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathExpression/evaluate)
37816
37816
  */
@@ -37829,55 +37829,55 @@ declare var XPathExpression: {
37829
37829
  */
37830
37830
  interface XPathResult {
37831
37831
  /**
37832
- * The read-only **`booleanValue`** property of the The return value is the boolean value of the `XPathResult` returned by In case XPathResult.resultType is not `BOOLEAN_TYPE`, a The following example shows the use of the `booleanValue` property.
37832
+ * The read-only **`booleanValue`** property of the XPathResult interface returns the boolean value of a result with XPathResult.resultType being `BOOLEAN_TYPE`.
37833
37833
  *
37834
37834
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/booleanValue)
37835
37835
  */
37836
37836
  readonly booleanValue: boolean;
37837
37837
  /**
37838
- * The read-only **`invalidIteratorState`** property of the is `true` if XPathResult.resultType is `UNORDERED_NODE_ITERATOR_TYPE` or `ORDERED_NODE_ITERATOR_TYPE` and the document has been modified since this result was returned.
37838
+ * The read-only **`invalidIteratorState`** property of the XPathResult interface signifies that the iterator has become invalid.
37839
37839
  *
37840
37840
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/invalidIteratorState)
37841
37841
  */
37842
37842
  readonly invalidIteratorState: boolean;
37843
37843
  /**
37844
- * The read-only **`numberValue`** property of the The return value is the numeric value of the `XPathResult` returned by In case XPathResult.resultType is not `NUMBER_TYPE`, a The following example shows the use of the `numberValue` property.
37844
+ * The read-only **`numberValue`** property of the XPathResult interface returns the numeric value of a result with XPathResult.resultType being `NUMBER_TYPE`.
37845
37845
  *
37846
37846
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/numberValue)
37847
37847
  */
37848
37848
  readonly numberValue: number;
37849
37849
  /**
37850
- * The read-only **`resultType`** property of the the type constants.
37850
+ * The read-only **`resultType`** property of the XPathResult interface represents the type of the result, as defined by the type constants.
37851
37851
  *
37852
37852
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/resultType)
37853
37853
  */
37854
37854
  readonly resultType: number;
37855
37855
  /**
37856
- * The read-only **`singleNodeValue`** property of the `null` in case no node was matched of a result with `FIRST_ORDERED_NODE_TYPE`.
37856
+ * The read-only **`singleNodeValue`** property of the XPathResult interface returns a Node value or `null` in case no node was matched of a result with XPathResult.resultType being `ANY_UNORDERED_NODE_TYPE` or `FIRST_ORDERED_NODE_TYPE`.
37857
37857
  *
37858
37858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/singleNodeValue)
37859
37859
  */
37860
37860
  readonly singleNodeValue: Node | null;
37861
37861
  /**
37862
- * The read-only **`snapshotLength`** property of the snapshot.
37862
+ * The read-only **`snapshotLength`** property of the XPathResult interface represents the number of nodes in the result snapshot.
37863
37863
  *
37864
37864
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotLength)
37865
37865
  */
37866
37866
  readonly snapshotLength: number;
37867
37867
  /**
37868
- * The read-only **`stringValue`** property of the The return value is the string value of the `XPathResult` returned by In case XPathResult.resultType is not `STRING_TYPE`, a The following example shows the use of the `stringValue` property.
37868
+ * The read-only **`stringValue`** property of the XPathResult interface returns the string value of a result with XPathResult.resultType being `STRING_TYPE`.
37869
37869
  *
37870
37870
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/stringValue)
37871
37871
  */
37872
37872
  readonly stringValue: string;
37873
37873
  /**
37874
- * The **`iterateNext()`** method of the next node from it or `null` if there are no more nodes.
37874
+ * The **`iterateNext()`** method of the XPathResult interface iterates over a node set result and returns the next node from it or `null` if there are no more nodes.
37875
37875
  *
37876
37876
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/iterateNext)
37877
37877
  */
37878
37878
  iterateNext(): Node | null;
37879
37879
  /**
37880
- * The **`snapshotItem()`** method of the `null` in case the index is not within the range of nodes.
37880
+ * The **`snapshotItem()`** method of the XPathResult interface returns an item of the snapshot collection or `null` in case the index is not within the range of nodes.
37881
37881
  *
37882
37882
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/XPathResult/snapshotItem)
37883
37883
  */
@@ -38967,7 +38967,7 @@ declare var frames: WindowProxy;
38967
38967
  */
38968
38968
  declare var history: History;
38969
38969
  /**
38970
- * The read-only **`innerHeight`** property of the including the height of the horizontal scroll bar, if present.
38970
+ * The read-only **`innerHeight`** property of the Window interface returns the interior height of the window in pixels, including the height of the horizontal scroll bar, if present.
38971
38971
  *
38972
38972
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/innerHeight)
38973
38973
  */
@@ -38979,7 +38979,7 @@ declare var innerHeight: number;
38979
38979
  */
38980
38980
  declare var innerWidth: number;
38981
38981
  /**
38982
- * Returns the number of frames (either frame or A number.
38982
+ * Returns the number of frames (either frame or iframe elements) in the window.
38983
38983
  *
38984
38984
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/length)
38985
38985
  */
@@ -39147,7 +39147,7 @@ declare var self: Window & typeof globalThis;
39147
39147
  */
39148
39148
  declare var speechSynthesis: SpeechSynthesis;
39149
39149
  /**
39150
- * The **`status`** property of the bar at the bottom of the browser window.
39150
+ * The **`status`** property of the Window interface was originally intended to set the text in the status bar at the bottom of the browser window.
39151
39151
  * @deprecated
39152
39152
  *
39153
39153
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/status)