6 lines
260 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
import { SpringOptions, Animation } from "../types";
export declare function spring({ from, to, restSpeed, restDelta, ...options }: SpringOptions): Animation<number>;
export declare namespace spring {
var needsInterpolation: (a: any, b: any) => boolean;
}