UNPKG

@oku-ui/motion

Version:

A tiny, performant animation library for VueJS

10 lines (9 loc) 295 B
import { Options } from '../../types'; export interface StateHandlers { enable: VoidFunction; disable: VoidFunction; } export interface Gesture { isActive: (options: Options) => void; subscribe: (element: Element, stateHandlers: StateHandlers, options: Options) => () => void; }