UNPKG

@blossom-carousel/svelte

Version:

A native-scroll-first carousel component for Svelte.

14 lines (13 loc) 337 B
import type { Snippet } from "svelte"; interface Props { index: number; active: boolean; forId: string; children: Snippet<[{ index: number; active: boolean; }]>; } declare const DotScope: import("svelte").Component<Props, {}, "">; type DotScope = ReturnType<typeof DotScope>; export default DotScope;