Files
Webklar.com/node_modules/embla-carousel/cjs/components/ScrollContain.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

8 lines
397 B
TypeScript

import { LimitType } from './Limit';
export type ScrollContainOptionType = false | 'trimSnaps' | 'keepSnaps';
export type ScrollContainType = {
snapsContained: number[];
scrollContainLimit: LimitType;
};
export declare function ScrollContain(viewSize: number, contentSize: number, snapsAligned: number[], containScroll: ScrollContainOptionType, pixelTolerance: number): ScrollContainType;