mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 17:29:11 +00:00
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
export type SlInitialFocusEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
declare global {
|
|
interface GlobalEventHandlersEventMap {
|
|
'sl-initial-focus': SlInitialFocusEvent;
|
|
}
|
|
}
|