sudovanilla-website/public/@shoelace-style/shoelace/cdn/events/sl-tab-show.d.ts
2024-05-13 23:34:06 -04:00

8 lines
173 B
TypeScript

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