UNPKG

@oku-ui/motion

Version:

A tiny, performant animation library for VueJS

9 lines (8 loc) 439 B
import { ComputedRef, Ref } from 'vue'; import { MotionState } from '../state/motion-state'; import { MotionProps } from '../state/types'; export declare function useMotionHelper(_props: MotionProps, currentElement: Ref<Element> | Element | null | ComputedRef<HTMLElement | undefined>, sfc?: boolean): { getSVGProps: () => import('framer-motion').DOMKeyframesDefinition | undefined; getStyle: () => any; state: MotionState; };