Files
Gemini-Search/node_modules/embla-carousel/components/ScrollLimit.d.ts
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

6 lines
207 B
TypeScript

import { LimitType } from './Limit';
export type ScrollLimitType = {
limit: LimitType;
};
export declare function ScrollLimit(contentSize: number, scrollSnaps: number[], loop: boolean): ScrollLimitType;