8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
export type SlTabShowEvent = CustomEvent<{
|
|
name: string;
|
|
}>;
|
|
declare global {
|
|
interface GlobalEventHandlersEventMap {
|
|
'sl-tab-show': SlTabShowEvent;
|
|
}
|
|
}
|