5 lines
278 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
import { AnimationOptions } from "./types";
export declare function animate<V = number>({ from, autoplay, driver, elapsed, repeat: repeatMax, repeatType, repeatDelay, onPlay, onStop, onComplete, onRepeat, onUpdate, ...options }: AnimationOptions<V>): {
stop: () => void;
};