@oku-ui/motion
Version:
A tiny, performant animation library for VueJS
11 lines (10 loc) • 403 B
TypeScript
export declare function useAnimations(): {
animations: () => MapIterator<[string, {
animations: import('framer-motion').AnimationPlaybackControls[];
id: string;
state: import('../state').MotionState;
}]>;
stop: (key?: string) => void;
play: (key?: string) => void;
getByID: (id?: string) => import('framer-motion').AnimationPlaybackControls[] | undefined;
};