codigo0/node_modules/happy-dom/lib/event/events/CustomEvent.d.ts

33 lines
907 B
TypeScript
Raw Normal View History

import Event from '../Event.js';
import ICustomEventInit from './ICustomEventInit.js';
import * as PropertySymbol from '../../PropertySymbol.js';
/**
*
*/
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 | null): void;
}
//# sourceMappingURL=CustomEvent.d.ts.map