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.
33 lines • 903 B
TypeScript
import Event from '../Event.cjs';
import ICustomEventInit from './ICustomEventInit.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
/**
*
*/
export default class CustomEvent extends Event {
[PropertySymbol.detail]: any;
/**
* Constructor.
*
* @param type Event type.
* @param [eventInit] Event init.
*/
constructor(type: string, eventInit?: ICustomEventInit | null);
/**
* Returns detail.
*
* @returns Detail.
*/
get detail(): any;
/**
* Init event.
*
* @deprecated
* @param type Type.
* @param [bubbles=false] "true" if it bubbles.
* @param [cancelable=false] "true" if it cancelable.
* @param [detail=null] Custom event detail.
*/
initCustomEvent(type: string, bubbles?: boolean, cancelable?: boolean, detail?: object): void;
}
//# sourceMappingURL=CustomEvent.d.ts.map