| 10 | export type UnwrapRefCarouselApi = UnwrapRef<CarouselApi>; |
| 11 | |
| 12 | export interface CarouselProps { |
| 13 | opts?: CarouselOptions; |
| 14 | plugins?: CarouselPlugin; |
| 15 | orientation?: "horizontal" | "vertical"; |
| 16 | } |
| 17 | |
| 18 | export interface CarouselEmits { |
| 19 | (e: "init-api", payload: UnwrapRefCarouselApi): void; |
nothing calls this directly
no outgoing calls
no test coverage detected