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 • 464 B
TypeScript
import HTMLElement from '../html-element/HTMLElement.js';
import HTMLFormElement from '../html-form-element/HTMLFormElement.js';
/**
* HTMLLegendElement
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
*/
export default class HTMLLegendElement extends HTMLElement {
/**
* Returns the parent form element.
*
* @returns Form.
*/
get form(): HTMLFormElement;
}
//# sourceMappingURL=HTMLLegendElement.d.ts.map