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.
20 lines • 525 B
TypeScript
import HTMLElement from '../html-element/HTMLElement.cjs';
import SVGElement from '../svg-element/SVGElement.cjs';
/**
* HTMLElement utility.
*/
export default class HTMLElementUtility {
/**
* Triggers a blur event.
*
* @param element Element.
*/
static blur(element: HTMLElement | SVGElement): void;
/**
* Triggers a focus event.
*
* @param element Element.
*/
static focus(element: HTMLElement | SVGElement): void;
}
//# sourceMappingURL=HTMLElementUtility.d.ts.map