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.

19 lines 686 B
import HTMLElement from '../html-element/HTMLElement.js'; import * as PropertySymbol from '../../PropertySymbol.js'; import type HTMLCollection from '../element/HTMLCollection.js'; import type HTMLOptionElement from '../html-option-element/HTMLOptionElement.js'; /** * HTMLDataListElement * * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement */ export default class HTMLDataListElement extends HTMLElement { [PropertySymbol.options]: HTMLCollection<HTMLOptionElement> | null; /** * Returns options. * * @returns Options. */ get options(): HTMLCollection<HTMLOptionElement>; } //# sourceMappingURL=HTMLDataListElement.d.ts.map