ScrollContain.d.ts 397 B

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