shoelace/src/events/sl-tab-show.ts

8 wiersze
161 B
TypeScript
Czysty Zwykły widok Historia

export type SlTabShowEvent = CustomEvent<{ name: string }>;
2023-02-08 18:14:43 +00:00
declare global {
interface GlobalEventHandlersEventMap {
'sl-tab-show': SlTabShowEvent;
}
}