UNPKG

sveltestrap

Version:
14 lines (11 loc) 311 B
import { SvelteComponentTyped } from 'svelte'; export interface CarouselIndicatorsProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap['ol']> { activeIndex: number; items: any[]; } export default class CarouselIndicators extends SvelteComponentTyped< CarouselIndicatorsProps, {}, {} > {}