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>
6 lines
210 B
TypeScript
6 lines
210 B
TypeScript
import { LimitType } from './Limit.js';
|
|
export type ScrollLimitType = {
|
|
limit: LimitType;
|
|
};
|
|
export declare function ScrollLimit(contentSize: number, scrollSnaps: number[], loop: boolean): ScrollLimitType;
|