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