sudovanilla-website/public/@shoelace-style/shoelace/cdn/events/sl-expand.d.ts
2024-05-13 23:34:06 -04:00

6 lines
174 B
TypeScript

export type SlExpandEvent = CustomEvent<Record<PropertyKey, never>>;
declare global {
interface GlobalEventHandlersEventMap {
'sl-expand': SlExpandEvent;
}
}