mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-11 01:39:11 +00:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
export type SlExpandEvent = CustomEvent<Record<PropertyKey, never>>;
|
|
declare global {
|
|
interface GlobalEventHandlersEventMap {
|
|
'sl-expand': SlExpandEvent;
|
|
}
|
|
}
|