2025-03-24 22:56:10 +01:00

5 lines
265 B
TypeScript

import { InertiaOptions } from "./types";
export declare function inertia({ from, velocity, min, max, power, timeConstant, bounceStiffness, bounceDamping, restDelta, modifyTarget, driver, onUpdate, onComplete, onStop, }: InertiaOptions): {
stop: () => void;
};