UNPKG

@blossom-carousel/svelte

Version:

A native-scroll-first carousel component for Svelte.

19 lines (18 loc) 479 B
import type { Snippet } from "svelte"; interface Props { as?: string; load?: "always" | "conditional"; repeat?: boolean; children?: Snippet; [key: string]: unknown; } declare const BlossomCarousel: import("svelte").Component<Props, { prev: (options?: { align?: string; }) => void; next: (options?: { align?: string; }) => void; }, "">; type BlossomCarousel = ReturnType<typeof BlossomCarousel>; export default BlossomCarousel;