UNPKG
@oku-ui/motion
Version:
alpha (0.4.3-alpha.0)
beta (0.4.0-beta.2)
latest (0.4.3)
0.4.3
0.4.3-alpha.0
0.4.2
0.4.1
0.4.0
0.4.0-beta.2
0.4.0-beta.1
0.3.4
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
0.0.1
A tiny, performant animation library for VueJS
github.com/oku-ui/motion
oku-ui/motion
@oku-ui/motion
/
dist
/
state
/
features
/
gestures
/
types.d.ts
10 lines
(9 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
; }