@types/web 0.0.227 → 0.0.228

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.227 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.227.
50
+ You can read what changed in version 0.0.228 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.228.
package/index.d.ts CHANGED
@@ -20367,7 +20367,7 @@ declare var RTCTrackEvent: {
20367
20367
  *
20368
20368
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList)
20369
20369
  */
20370
- interface RadioNodeList extends NodeList {
20370
+ interface RadioNodeList extends NodeListOf<HTMLInputElement> {
20371
20371
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList/value) */
20372
20372
  value: string;
20373
20373
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.227",
3
+ "version": "0.0.228",
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
@@ -20347,7 +20347,7 @@ declare var RTCTrackEvent: {
20347
20347
  *
20348
20348
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList)
20349
20349
  */
20350
- interface RadioNodeList extends NodeList {
20350
+ interface RadioNodeList extends NodeListOf<HTMLInputElement> {
20351
20351
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList/value) */
20352
20352
  value: string;
20353
20353
  }
package/ts5.6/index.d.ts CHANGED
@@ -20367,7 +20367,7 @@ declare var RTCTrackEvent: {
20367
20367
  *
20368
20368
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList)
20369
20369
  */
20370
- interface RadioNodeList extends NodeList {
20370
+ interface RadioNodeList extends NodeListOf<HTMLInputElement> {
20371
20371
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RadioNodeList/value) */
20372
20372
  value: string;
20373
20373
  }