TypeScript-DOM-lib-generator
TypeScript-DOM-lib-generator copied to clipboard
`RadioNodeList` should extend `NodeListOf<HTMLInputElement>`
RadioNodeList currently extend NodeList, while this is technically correct, the items of said node list (as far as I'm aware) are guaranteed to be the radio buttons themselves, which are of type HTMLInputElement. This would eliminate an as when interacting with the properties of the radio buttons, e.g. checked.