nebula/dist/events/sl-tab-show.d.ts

9 lines
173 B
TypeScript
Raw Normal View History

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