Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
542 B
Text
11 lines
542 B
Text
import { EmblaCarouselType, EmblaOptionsType, EmblaPluginType } from 'embla-carousel';
|
|
export type EmblaViewportRefType = <ViewportElement extends HTMLElement>(instance: ViewportElement | null) => void;
|
|
export type UseEmblaCarouselType = [
|
|
EmblaViewportRefType,
|
|
EmblaCarouselType | undefined
|
|
];
|
|
declare function useEmblaCarousel(options?: EmblaOptionsType, plugins?: EmblaPluginType[]): UseEmblaCarouselType;
|
|
declare namespace useEmblaCarousel {
|
|
let globalOptions: EmblaOptionsType | undefined;
|
|
}
|
|
export default useEmblaCarousel;
|