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 430 B
import NodeList from '../node/NodeList.cjs'; import THTMLFormControlElement from './THTMLFormControlElement.cjs'; /** * 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; } //# sourceMappingURL=RadioNodeList.d.ts.map