UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

9 lines (8 loc) 216 B
export interface TweenProps { from: number; to: number; duration: number; onUpdate: (currentValue: number) => void; onFinish: () => void; } export declare function tween(props: TweenProps): void;