Files
story-studio/remotion/node_modules/@remotion/studio/dist/helpers/smooth-zoom.d.ts
2026-02-21 10:33:18 +01:00

5 lines
200 B
TypeScript

export declare const MIN_ZOOM = 0.05;
export declare const MAX_ZOOM = 10;
export declare const smoothenZoom: (input: number) => number;
export declare const unsmoothenZoom: (input: number) => number;