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

7 lines
168 B
TypeScript
Raw Normal View History

2024-05-13 22:34:06 -05:00
export type SlShowEvent = CustomEvent<Record<PropertyKey, never>>;
declare global {
interface GlobalEventHandlersEventMap {
'sl-show': SlShowEvent;
}
}