|
- import Event from '../Event';
- import ICustomEventInit from './ICustomEventInit';
- /**
- *
- */
- export default class CustomEvent extends Event {
- detail: object;
- /**
- * Constructor.
- *
- * @param type Event type.
- * @param [eventInit] Event init.
- */
- constructor(type: string, eventInit?: ICustomEventInit);
- /**
- * 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;
- }
|