mirror of
https://github.com/onsonr/nebula.git
synced 2025-03-11 01:39:11 +00:00
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
![]() |
import type SlCarouselItem from '../components/carousel-item/carousel-item.js';
|
||
|
export type SlSlideChangeEvent = CustomEvent<{
|
||
|
index: number;
|
||
|
slide: SlCarouselItem;
|
||
|
}>;
|
||
|
declare global {
|
||
|
interface GlobalEventHandlersEventMap {
|
||
|
'sl-slide-change': SlSlideChangeEvent;
|
||
|
}
|
||
|
}
|