@oku-ui/motion
Version:
A tiny, performant animation library for VueJS
11 lines (10 loc) • 314 B
TypeScript
import { Gesture } from './types';
import { MotionState } from '../../motion-state';
import { BaseGesture } from '.';
export declare const hover: Gesture;
export declare class HoverGesture extends BaseGesture {
isActive(): boolean;
constructor(state: MotionState);
mount(): void;
update(): void;
}