mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-10 17:29:11 +00:00
9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
export type SlTabShowEvent = CustomEvent<{
|
|
name: string;
|
|
}>;
|
|
declare global {
|
|
interface GlobalEventHandlersEventMap {
|
|
'sl-tab-show': SlTabShowEvent;
|
|
}
|
|
}
|