Interface CustomEventInit<T>
interface CustomEventInit<T = any> {
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
detail?: T;
}
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
detail?: T;
}
Type Parameters
Hierarchy
- EventInit
- CustomEventInit (View Summary)