shoelace/src/events/sl-focus.ts

8 wiersze
164 B
TypeScript

export type SlFocusEvent = CustomEvent<Record<PropertyKey, never>>;
declare global {
interface GlobalEventHandlersEventMap {
'sl-focus': SlFocusEvent;
}
}