33 lines
907 B
TypeScript
33 lines
907 B
TypeScript
|
|
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
|