UNPKG

lingo3d-vue

Version:

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

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