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>
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
import { AxisType } from './Axis.js';
|
|
export type TranslateType = {
|
|
clear: () => void;
|
|
to: (target: number) => void;
|
|
toggleActive: (active: boolean) => void;
|
|
};
|
|
export declare function Translate(axis: AxisType, container: HTMLElement): TranslateType;
|