@types/web 0.0.304 → 0.0.305

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.304 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.304.
50
+ You can read what changed in version 0.0.305 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.305.
package/index.d.ts CHANGED
@@ -659,6 +659,7 @@ interface EncodedVideoChunkInit {
659
659
 
660
660
  interface EncodedVideoChunkMetadata {
661
661
  decoderConfig?: VideoDecoderConfig;
662
+ svc?: SvcOutputMetadata;
662
663
  }
663
664
 
664
665
  interface ErrorEventInit extends EventInit {
@@ -730,6 +731,7 @@ interface FocusEventInit extends UIEventInit {
730
731
  }
731
732
 
732
733
  interface FocusOptions {
734
+ focusVisible?: boolean;
733
735
  preventScroll?: boolean;
734
736
  }
735
737
 
@@ -2340,6 +2342,10 @@ interface SubmitEventInit extends EventInit {
2340
2342
  submitter?: HTMLElement | null;
2341
2343
  }
2342
2344
 
2345
+ interface SvcOutputMetadata {
2346
+ temporalLayerId?: number;
2347
+ }
2348
+
2343
2349
  interface TaskControllerInit {
2344
2350
  priority?: TaskPriority;
2345
2351
  }
@@ -13381,7 +13387,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13381
13387
  */
13382
13388
  setAttribute(qualifiedName: string, value: string): void;
13383
13389
  /**
13384
- * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13390
+ * The **`setAttributeNS()`** method of the Element interface adds a new attribute or changes the value of an attribute with the given namespace and name.
13385
13391
  *
13386
13392
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13387
13393
  */
@@ -26170,6 +26176,7 @@ declare var PerformanceObserverEntryList: {
26170
26176
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
26171
26177
  */
26172
26178
  interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26179
+ /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26173
26180
  toJSON(): any;
26174
26181
  }
26175
26182
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.304",
3
+ "version": "0.0.305",
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
@@ -656,6 +656,7 @@ interface EncodedVideoChunkInit {
656
656
 
657
657
  interface EncodedVideoChunkMetadata {
658
658
  decoderConfig?: VideoDecoderConfig;
659
+ svc?: SvcOutputMetadata;
659
660
  }
660
661
 
661
662
  interface ErrorEventInit extends EventInit {
@@ -727,6 +728,7 @@ interface FocusEventInit extends UIEventInit {
727
728
  }
728
729
 
729
730
  interface FocusOptions {
731
+ focusVisible?: boolean;
730
732
  preventScroll?: boolean;
731
733
  }
732
734
 
@@ -2337,6 +2339,10 @@ interface SubmitEventInit extends EventInit {
2337
2339
  submitter?: HTMLElement | null;
2338
2340
  }
2339
2341
 
2342
+ interface SvcOutputMetadata {
2343
+ temporalLayerId?: number;
2344
+ }
2345
+
2340
2346
  interface TaskControllerInit {
2341
2347
  priority?: TaskPriority;
2342
2348
  }
@@ -13368,7 +13374,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13368
13374
  */
13369
13375
  setAttribute(qualifiedName: string, value: string): void;
13370
13376
  /**
13371
- * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13377
+ * The **`setAttributeNS()`** method of the Element interface adds a new attribute or changes the value of an attribute with the given namespace and name.
13372
13378
  *
13373
13379
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13374
13380
  */
@@ -26146,6 +26152,7 @@ declare var PerformanceObserverEntryList: {
26146
26152
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
26147
26153
  */
26148
26154
  interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26155
+ /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26149
26156
  toJSON(): any;
26150
26157
  }
26151
26158
 
package/ts5.6/index.d.ts CHANGED
@@ -656,6 +656,7 @@ interface EncodedVideoChunkInit {
656
656
 
657
657
  interface EncodedVideoChunkMetadata {
658
658
  decoderConfig?: VideoDecoderConfig;
659
+ svc?: SvcOutputMetadata;
659
660
  }
660
661
 
661
662
  interface ErrorEventInit extends EventInit {
@@ -727,6 +728,7 @@ interface FocusEventInit extends UIEventInit {
727
728
  }
728
729
 
729
730
  interface FocusOptions {
731
+ focusVisible?: boolean;
730
732
  preventScroll?: boolean;
731
733
  }
732
734
 
@@ -2337,6 +2339,10 @@ interface SubmitEventInit extends EventInit {
2337
2339
  submitter?: HTMLElement | null;
2338
2340
  }
2339
2341
 
2342
+ interface SvcOutputMetadata {
2343
+ temporalLayerId?: number;
2344
+ }
2345
+
2340
2346
  interface TaskControllerInit {
2341
2347
  priority?: TaskPriority;
2342
2348
  }
@@ -13378,7 +13384,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13378
13384
  */
13379
13385
  setAttribute(qualifiedName: string, value: string): void;
13380
13386
  /**
13381
- * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13387
+ * The **`setAttributeNS()`** method of the Element interface adds a new attribute or changes the value of an attribute with the given namespace and name.
13382
13388
  *
13383
13389
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13384
13390
  */
@@ -26167,6 +26173,7 @@ declare var PerformanceObserverEntryList: {
26167
26173
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
26168
26174
  */
26169
26175
  interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26176
+ /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26170
26177
  toJSON(): any;
26171
26178
  }
26172
26179
 
package/ts5.9/index.d.ts CHANGED
@@ -656,6 +656,7 @@ interface EncodedVideoChunkInit {
656
656
 
657
657
  interface EncodedVideoChunkMetadata {
658
658
  decoderConfig?: VideoDecoderConfig;
659
+ svc?: SvcOutputMetadata;
659
660
  }
660
661
 
661
662
  interface ErrorEventInit extends EventInit {
@@ -727,6 +728,7 @@ interface FocusEventInit extends UIEventInit {
727
728
  }
728
729
 
729
730
  interface FocusOptions {
731
+ focusVisible?: boolean;
730
732
  preventScroll?: boolean;
731
733
  }
732
734
 
@@ -2337,6 +2339,10 @@ interface SubmitEventInit extends EventInit {
2337
2339
  submitter?: HTMLElement | null;
2338
2340
  }
2339
2341
 
2342
+ interface SvcOutputMetadata {
2343
+ temporalLayerId?: number;
2344
+ }
2345
+
2340
2346
  interface TaskControllerInit {
2341
2347
  priority?: TaskPriority;
2342
2348
  }
@@ -13378,7 +13384,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
13378
13384
  */
13379
13385
  setAttribute(qualifiedName: string, value: string): void;
13380
13386
  /**
13381
- * If you are working with HTML documents and you don't need to specify the requested attribute as being part of a specific namespace, use the setAttribute() method instead.
13387
+ * The **`setAttributeNS()`** method of the Element interface adds a new attribute or changes the value of an attribute with the given namespace and name.
13382
13388
  *
13383
13389
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNS)
13384
13390
  */
@@ -26167,6 +26173,7 @@ declare var PerformanceObserverEntryList: {
26167
26173
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformancePaintTiming)
26168
26174
  */
26169
26175
  interface PerformancePaintTiming extends PerformanceEntry, PaintTimingMixin {
26176
+ /** The **`toJSON()`** method of the PerformancePaintTiming interface is a serializer; it returns a JSON representation of the PerformancePaintTiming object. */
26170
26177
  toJSON(): any;
26171
26178
  }
26172
26179