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 • 494 B
TypeScript
import Event from '../../event/Event.cjs';
import Element from './Element.cjs';
/**
* ECMAScript module compiler.
*/
export default class ElementEventAttributeUtility {
/**
* Evaluates code in attribute and returns event listener.
*
* @param element
* @param property Property.
* @returns Result.
*/
static getEventListener(element: Element, property: string): ((event: Event) => void) | null;
}
//# sourceMappingURL=ElementEventAttributeUtility.d.ts.map