Variable CustomEvent
CustomEvent: {
prototype: CustomEvent;
new <T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
}
prototype: CustomEvent;
new <T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
}
Type declaration
- new <T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>
Type Parameters
Parameters
- type: string
Optional
eventInitDict: CustomEventInit<T>
Returns CustomEvent<T>
prototype: CustomEvent