UNPKG

lingo3d-react

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

11 lines (10 loc) 343 B
import { AnimationOptions } from "popmotion"; type Options = AnimationOptions<number> & { from: number; to: number | Array<number>; duration?: number; stopped?: boolean; step?: (value: number) => void; }; declare const _default: ({ from, to, duration, stopped, step, ...options }: Options) => any; export default _default;