shoelace/src/events/sl-tab-show.ts

8 wiersze
161 B
TypeScript

export type SlTabShowEvent = CustomEvent<{ name: string }>;
declare global {
interface GlobalEventHandlersEventMap {
'sl-tab-show': SlTabShowEvent;
}
}