@types/web 0.0.275 → 0.0.277

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.275 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.275.
50
+ You can read what changed in version 0.0.277 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.277.
package/index.d.ts CHANGED
@@ -2312,6 +2312,7 @@ interface TextEncoderEncodeIntoResult {
2312
2312
  interface ToggleEventInit extends EventInit {
2313
2313
  newState?: string;
2314
2314
  oldState?: string;
2315
+ source?: Element | null;
2315
2316
  }
2316
2317
 
2317
2318
  interface TouchEventInit extends EventModifierInit {
@@ -3280,7 +3281,11 @@ interface AnimationTimeline {
3280
3281
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
3281
3282
  */
3282
3283
  readonly currentTime: CSSNumberish | null;
3283
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3284
+ /**
3285
+ * The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3286
+ *
3287
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3288
+ */
3284
3289
  readonly duration: CSSNumberish | null;
3285
3290
  }
3286
3291
 
@@ -6362,6 +6367,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6362
6367
  display: string;
6363
6368
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
6364
6369
  dominantBaseline: string;
6370
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
6365
6371
  dynamicRangeLimit: string;
6366
6372
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
6367
6373
  emptyCells: string;
@@ -14140,7 +14146,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
14140
14146
  */
14141
14147
  innerText: string;
14142
14148
  /**
14143
- * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14149
+ * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
14144
14150
  *
14145
14151
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
14146
14152
  */
@@ -15489,7 +15495,7 @@ interface HTMLLabelElement extends HTMLElement {
15489
15495
  */
15490
15496
  readonly control: HTMLElement | null;
15491
15497
  /**
15492
- * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15498
+ * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
15493
15499
  *
15494
15500
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
15495
15501
  */
@@ -16800,7 +16806,7 @@ interface HTMLScriptElement extends HTMLElement {
16800
16806
  */
16801
16807
  src: string;
16802
16808
  /**
16803
- * The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16809
+ * The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
16804
16810
  *
16805
16811
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
16806
16812
  */
@@ -23612,7 +23618,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
23612
23618
  */
23613
23619
  readonly cancelable: boolean;
23614
23620
  /**
23615
- * The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23621
+ * The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23616
23622
  *
23617
23623
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23618
23624
  */
@@ -30643,7 +30649,7 @@ interface ScreenOrientation extends EventTarget {
30643
30649
  */
30644
30650
  lock(orientation: OrientationLockType): Promise<void>;
30645
30651
  /**
30646
- * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30652
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
30647
30653
  *
30648
30654
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30649
30655
  */
@@ -32715,7 +32721,7 @@ interface TextTrackListEventMap {
32715
32721
  }
32716
32722
 
32717
32723
  /**
32718
- * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate textTrack object in the list.
32724
+ * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
32719
32725
  *
32720
32726
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
32721
32727
  */
@@ -40147,7 +40153,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
40147
40153
  type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
40148
40154
  type MediaSessionPlaybackState = "none" | "paused" | "playing";
40149
40155
  type MediaStreamTrackState = "ended" | "live";
40150
- type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40156
+ type NavigationTimingType = "back_forward" | "navigate" | "reload";
40151
40157
  type NavigationType = "push" | "reload" | "replace" | "traverse";
40152
40158
  type NotificationDirection = "auto" | "ltr" | "rtl";
40153
40159
  type NotificationPermission = "default" | "denied" | "granted";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.275",
3
+ "version": "0.0.277",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -2309,6 +2309,7 @@ interface TextEncoderEncodeIntoResult {
2309
2309
  interface ToggleEventInit extends EventInit {
2310
2310
  newState?: string;
2311
2311
  oldState?: string;
2312
+ source?: Element | null;
2312
2313
  }
2313
2314
 
2314
2315
  interface TouchEventInit extends EventModifierInit {
@@ -3277,7 +3278,11 @@ interface AnimationTimeline {
3277
3278
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
3278
3279
  */
3279
3280
  readonly currentTime: CSSNumberish | null;
3280
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3281
+ /**
3282
+ * The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3283
+ *
3284
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3285
+ */
3281
3286
  readonly duration: CSSNumberish | null;
3282
3287
  }
3283
3288
 
@@ -6352,6 +6357,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6352
6357
  display: string;
6353
6358
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
6354
6359
  dominantBaseline: string;
6360
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
6355
6361
  dynamicRangeLimit: string;
6356
6362
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
6357
6363
  emptyCells: string;
@@ -14124,7 +14130,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
14124
14130
  */
14125
14131
  innerText: string;
14126
14132
  /**
14127
- * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14133
+ * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
14128
14134
  *
14129
14135
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
14130
14136
  */
@@ -15471,7 +15477,7 @@ interface HTMLLabelElement extends HTMLElement {
15471
15477
  */
15472
15478
  readonly control: HTMLElement | null;
15473
15479
  /**
15474
- * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15480
+ * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
15475
15481
  *
15476
15482
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
15477
15483
  */
@@ -16777,7 +16783,7 @@ interface HTMLScriptElement extends HTMLElement {
16777
16783
  */
16778
16784
  src: string;
16779
16785
  /**
16780
- * The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16786
+ * The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
16781
16787
  *
16782
16788
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
16783
16789
  */
@@ -23588,7 +23594,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
23588
23594
  */
23589
23595
  readonly cancelable: boolean;
23590
23596
  /**
23591
- * The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23597
+ * The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23592
23598
  *
23593
23599
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23594
23600
  */
@@ -30618,7 +30624,7 @@ interface ScreenOrientation extends EventTarget {
30618
30624
  */
30619
30625
  lock(orientation: OrientationLockType): Promise<void>;
30620
30626
  /**
30621
- * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30627
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
30622
30628
  *
30623
30629
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30624
30630
  */
@@ -32689,7 +32695,7 @@ interface TextTrackListEventMap {
32689
32695
  }
32690
32696
 
32691
32697
  /**
32692
- * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate textTrack object in the list.
32698
+ * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
32693
32699
  *
32694
32700
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
32695
32701
  */
@@ -40121,7 +40127,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
40121
40127
  type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
40122
40128
  type MediaSessionPlaybackState = "none" | "paused" | "playing";
40123
40129
  type MediaStreamTrackState = "ended" | "live";
40124
- type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40130
+ type NavigationTimingType = "back_forward" | "navigate" | "reload";
40125
40131
  type NavigationType = "push" | "reload" | "replace" | "traverse";
40126
40132
  type NotificationDirection = "auto" | "ltr" | "rtl";
40127
40133
  type NotificationPermission = "default" | "denied" | "granted";
package/ts5.6/index.d.ts CHANGED
@@ -2309,6 +2309,7 @@ interface TextEncoderEncodeIntoResult {
2309
2309
  interface ToggleEventInit extends EventInit {
2310
2310
  newState?: string;
2311
2311
  oldState?: string;
2312
+ source?: Element | null;
2312
2313
  }
2313
2314
 
2314
2315
  interface TouchEventInit extends EventModifierInit {
@@ -3277,7 +3278,11 @@ interface AnimationTimeline {
3277
3278
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
3278
3279
  */
3279
3280
  readonly currentTime: CSSNumberish | null;
3280
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3281
+ /**
3282
+ * The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3283
+ *
3284
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3285
+ */
3281
3286
  readonly duration: CSSNumberish | null;
3282
3287
  }
3283
3288
 
@@ -6359,6 +6364,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6359
6364
  display: string;
6360
6365
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
6361
6366
  dominantBaseline: string;
6367
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
6362
6368
  dynamicRangeLimit: string;
6363
6369
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
6364
6370
  emptyCells: string;
@@ -14137,7 +14143,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
14137
14143
  */
14138
14144
  innerText: string;
14139
14145
  /**
14140
- * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14146
+ * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
14141
14147
  *
14142
14148
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
14143
14149
  */
@@ -15486,7 +15492,7 @@ interface HTMLLabelElement extends HTMLElement {
15486
15492
  */
15487
15493
  readonly control: HTMLElement | null;
15488
15494
  /**
15489
- * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15495
+ * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
15490
15496
  *
15491
15497
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
15492
15498
  */
@@ -16797,7 +16803,7 @@ interface HTMLScriptElement extends HTMLElement {
16797
16803
  */
16798
16804
  src: string;
16799
16805
  /**
16800
- * The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16806
+ * The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
16801
16807
  *
16802
16808
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
16803
16809
  */
@@ -23609,7 +23615,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
23609
23615
  */
23610
23616
  readonly cancelable: boolean;
23611
23617
  /**
23612
- * The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23618
+ * The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23613
23619
  *
23614
23620
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23615
23621
  */
@@ -30640,7 +30646,7 @@ interface ScreenOrientation extends EventTarget {
30640
30646
  */
30641
30647
  lock(orientation: OrientationLockType): Promise<void>;
30642
30648
  /**
30643
- * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30649
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
30644
30650
  *
30645
30651
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30646
30652
  */
@@ -32712,7 +32718,7 @@ interface TextTrackListEventMap {
32712
32718
  }
32713
32719
 
32714
32720
  /**
32715
- * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate textTrack object in the list.
32721
+ * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
32716
32722
  *
32717
32723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
32718
32724
  */
@@ -40144,7 +40150,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
40144
40150
  type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
40145
40151
  type MediaSessionPlaybackState = "none" | "paused" | "playing";
40146
40152
  type MediaStreamTrackState = "ended" | "live";
40147
- type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40153
+ type NavigationTimingType = "back_forward" | "navigate" | "reload";
40148
40154
  type NavigationType = "push" | "reload" | "replace" | "traverse";
40149
40155
  type NotificationDirection = "auto" | "ltr" | "rtl";
40150
40156
  type NotificationPermission = "default" | "denied" | "granted";
package/ts5.9/index.d.ts CHANGED
@@ -2309,6 +2309,7 @@ interface TextEncoderEncodeIntoResult {
2309
2309
  interface ToggleEventInit extends EventInit {
2310
2310
  newState?: string;
2311
2311
  oldState?: string;
2312
+ source?: Element | null;
2312
2313
  }
2313
2314
 
2314
2315
  interface TouchEventInit extends EventModifierInit {
@@ -3277,7 +3278,11 @@ interface AnimationTimeline {
3277
3278
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
3278
3279
  */
3279
3280
  readonly currentTime: CSSNumberish | null;
3280
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
3281
+ /**
3282
+ * The **`duration`** read-only property of the Web Animations API's AnimationTimeline interface returns the maximum value for this timeline or `null`.
3283
+ *
3284
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration)
3285
+ */
3281
3286
  readonly duration: CSSNumberish | null;
3282
3287
  }
3283
3288
 
@@ -6359,6 +6364,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6359
6364
  display: string;
6360
6365
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dominant-baseline) */
6361
6366
  dominantBaseline: string;
6367
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/dynamic-range-limit) */
6362
6368
  dynamicRangeLimit: string;
6363
6369
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
6364
6370
  emptyCells: string;
@@ -14137,7 +14143,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
14137
14143
  */
14138
14144
  innerText: string;
14139
14145
  /**
14140
- * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a MISSING: RFC(5646, 'BCP 47 language identifier tag')].
14146
+ * The **`lang`** property of the HTMLElement interface indicates the base language of an element's attribute values and text content, in the form of a BCP 47 language tag.
14141
14147
  *
14142
14148
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lang)
14143
14149
  */
@@ -15486,7 +15492,7 @@ interface HTMLLabelElement extends HTMLElement {
15486
15492
  */
15487
15493
  readonly control: HTMLElement | null;
15488
15494
  /**
15489
- * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a control owned by a form.
15495
+ * The **`form`** read-only property of the HTMLLabelElement interface returns an HTMLFormElement object that owns the HTMLLabelElement.control associated with this label, or `null` if this label is not associated with a labelable form-associated element (button, input, output, select, textarea, or form-associated custom elements) that is owned by a form.
15490
15496
  *
15491
15497
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLabelElement/form)
15492
15498
  */
@@ -16797,7 +16803,7 @@ interface HTMLScriptElement extends HTMLElement {
16797
16803
  */
16798
16804
  src: string;
16799
16805
  /**
16800
- * The **`text`** property of the HTMLScriptElement interface is a string that reflects the text content inside the script element.
16806
+ * The **`text`** property of the HTMLScriptElement interface represents the inline text content of the script element.
16801
16807
  *
16802
16808
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/text)
16803
16809
  */
@@ -23609,7 +23615,7 @@ interface PerformanceEventTiming extends PerformanceEntry {
23609
23615
  */
23610
23616
  readonly cancelable: boolean;
23611
23617
  /**
23612
- * The read-only **`interactionId`** property returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23618
+ * The read-only **`interactionId`** property of the PerformanceEventTiming interface returns an ID that uniquely identifies a user interaction which triggered a series of associated events.
23613
23619
  *
23614
23620
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceEventTiming/interactionId)
23615
23621
  */
@@ -30640,7 +30646,7 @@ interface ScreenOrientation extends EventTarget {
30640
30646
  */
30641
30647
  lock(orientation: OrientationLockType): Promise<void>;
30642
30648
  /**
30643
- * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
30649
+ * The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document, effectively locking it to the default screen orientation.
30644
30650
  *
30645
30651
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/unlock)
30646
30652
  */
@@ -32712,7 +32718,7 @@ interface TextTrackListEventMap {
32712
32718
  }
32713
32719
 
32714
32720
  /**
32715
- * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate textTrack object in the list.
32721
+ * The **`TextTrackList`** interface is used to represent a list of the text tracks defined for the associated video or audio element, with each track represented by a separate TextTrack object in the list.
32716
32722
  *
32717
32723
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList)
32718
32724
  */
@@ -40144,7 +40150,7 @@ type MediaKeysRequirement = "not-allowed" | "optional" | "required";
40144
40150
  type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
40145
40151
  type MediaSessionPlaybackState = "none" | "paused" | "playing";
40146
40152
  type MediaStreamTrackState = "ended" | "live";
40147
- type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
40153
+ type NavigationTimingType = "back_forward" | "navigate" | "reload";
40148
40154
  type NavigationType = "push" | "reload" | "replace" | "traverse";
40149
40155
  type NotificationDirection = "auto" | "ltr" | "rtl";
40150
40156
  type NotificationPermission = "default" | "denied" | "granted";