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