-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathindex.ts
33 lines (27 loc) · 1.03 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Directive
export { directive as MotionDirective } from './directive'
// Plugin
export { MotionPlugin } from './plugin'
// Utils
export { slugify } from './utils/slugify'
export { isMotionInstance } from './utils/is-motion-instance'
// Presets
export * from './presets'
// Typings
export * from './types'
// Components
export * from './components'
// Composables
export { reactiveStyle } from './reactiveStyle'
export { reactiveTransform } from './reactiveTransform'
export { useElementStyle } from './useElementStyle'
export { useElementTransform } from './useElementTransform'
export { useMotion } from './useMotion'
export { useMotionControls } from './useMotionControls'
export { useMotionFeatures } from './useMotionFeatures'
export { useMotionProperties } from './useMotionProperties'
export { useMotions } from './useMotions'
export { useMotionTransitions } from './useMotionTransitions'
export { useMotionVariants } from './useMotionVariants'
export { useSpring } from './useSpring'
export { useReducedMotion } from './useReducedMotion'