reaviz
Version:
Data Visualization using React
18 lines (17 loc) • 386 B
TypeScript
export declare const useInterpolate: ({ data, animated }: {
data: any;
animated: any;
}) => {
transition: {
type: "spring";
velocity: number;
damping: number;
restDelta: number;
restSpeed: number;
delay?: undefined;
} | {
delay: number;
type: false;
};
d: import('motion-dom').MotionValue<any>;
};