-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathindex.ts
41 lines (40 loc) · 1.21 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
34
35
36
37
38
39
40
41
// #if _X_
export * from './vue/index-x'
// #else
// @ts-expect-error
export * from './vue/index'
// #endif
export { useOn, useSubscribe } from './helpers/useSubscribe'
export { useContextInfo, getContextInfo } from './helpers/useContextInfo'
export {
withWebEvent,
useCustomEvent,
useNativeEvent,
} from './helpers/useEvent'
export type {
CustomEventTrigger,
NativeEventTrigger,
EmitEvent,
} from './helpers/useEvent'
export * from './helpers/scroller'
export { parseText } from './helpers/text'
export {
useUserAction,
addInteractListener,
getInteractStatus,
} from './helpers/useUserAction'
export { useAttrs } from './helpers/useAttrs'
export { useBooleanAttr } from './helpers/useBooleanAttr'
export { useTouchtrack } from './helpers/useTouchtrack'
export {
defineBuiltInComponent,
defineSystemComponent,
defineUnsupportedComponent,
} from './helpers/component'
export { flatVNode } from './helpers/flatVNode'
export { uniFormKey } from './vue/form'
export type { UniFormCtx } from './vue/form'
export type { DecodeOptions } from './helpers/text'
export { useRebuild } from './helpers/useRebuild'
export { default as animation } from './helpers/animation'
export { UniElement } from './helpers/UniElement'