Vollständiges Redesign mit Gold-Formularen, BMP-Logo, multi-step Forms (Bewerbung, Kontakt, Sponsoring), Netlify-Deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
464 B
TypeScript
10 lines
464 B
TypeScript
import { AlignmentType } from './Alignment.js';
|
|
import { AxisType } from './Axis.js';
|
|
import { NodeRectType } from './NodeRects.js';
|
|
import { SlidesToScrollType } from './SlidesToScroll.js';
|
|
export type ScrollSnapsType = {
|
|
snaps: number[];
|
|
snapsAligned: number[];
|
|
};
|
|
export declare function ScrollSnaps(axis: AxisType, alignment: AlignmentType, containerRect: NodeRectType, slideRects: NodeRectType[], slidesToScroll: SlidesToScrollType): ScrollSnapsType;
|