sudovanilla-website/public/@shoelace-style/shoelace/cdn/events/sl-tab-show.d.ts

9 lines
173 B
TypeScript
Raw Normal View History

2024-05-13 22:34:06 -05:00
export type SlTabShowEvent = CustomEvent<{
name: string;
}>;
declare global {
interface GlobalEventHandlersEventMap {
'sl-tab-show': SlTabShowEvent;
}
}