shoelace/src/events/sl-focus.ts

8 wiersze
164 B
TypeScript
Czysty Zwykły widok Historia

export type SlFocusEvent = CustomEvent<Record<PropertyKey, never>>;
2023-02-08 18:55:19 +00:00
declare global {
interface GlobalEventHandlersEventMap {
'sl-focus': SlFocusEvent;
}
}