UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

16 lines 444 B
import NodeList from '../node/NodeList.js'; import type { THTMLFormControlElement } from './THTMLFormControlElement.js'; /** * RadioNodeList * * @see https://developer.mozilla.org/en-US/docs/Web/API/RadioNodeList */ export default class RadioNodeList extends NodeList<THTMLFormControlElement> { /** * Returns value. * * @returns Value. */ get value(): string | null; } //# sourceMappingURL=RadioNodeList.d.ts.map