5 lines
265 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
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;
};