index.ts 1.2 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4
export * from './service/base/base64'
export * from './service/base/upx2px'
export * from './service/base/interceptor'

fxy060608's avatar
fxy060608 已提交
5 6
export * from './service/context/createVideoContext'

fxy060608's avatar
fxy060608 已提交
7
export * from './service/ui/createIntersectionObserver'
fxy060608's avatar
fxy060608 已提交
8
export * from './service/ui/createSelectorQuery'
fxy060608's avatar
fxy060608 已提交
9

fxy060608's avatar
fxy060608 已提交
10
// protocols
fxy060608's avatar
fxy060608 已提交
11
export * from './protocols/base/canIUse'
fxy060608's avatar
fxy060608 已提交
12

fxy060608's avatar
fxy060608 已提交
13 14
export * from './protocols/device/makePhoneCall'
export * from './protocols/device/setClipboardData'
fxy060608's avatar
fxy060608 已提交
15 16 17 18 19 20 21

export * from './protocols/file/openDocument'

export * from './protocols/location/chooseLocation'
export * from './protocols/location/getLocation'
export * from './protocols/location/openLocation'

fxy060608's avatar
fxy060608 已提交
22 23 24
export * from './protocols/media/chooseImage'
export * from './protocols/media/chooseVideo'
export * from './protocols/media/getImageInfo'
fxy060608's avatar
fxy060608 已提交
25 26 27

export * from './protocols/network/request'

fxy060608's avatar
fxy060608 已提交
28
export * from './protocols/route/route'
fxy060608's avatar
fxy060608 已提交
29

fxy060608's avatar
fxy060608 已提交
30
// helpers
fxy060608's avatar
fxy060608 已提交
31
export {
fxy060608's avatar
fxy060608 已提交
32
  defineOnApi,
fxy060608's avatar
fxy060608 已提交
33
  defineOffApi,
fxy060608's avatar
fxy060608 已提交
34 35 36
  defineTaskApi,
  defineSyncApi,
  defineAsyncApi,
fxy060608's avatar
fxy060608 已提交
37
} from './helpers/api'
fxy060608's avatar
fxy060608 已提交
38

fxy060608's avatar
fxy060608 已提交
39 40
export { getCurrentPageVm } from './helpers/utils'

fxy060608's avatar
fxy060608 已提交
41 42
export { handlePromise } from './helpers/api/promise'
export { invokeApi, wrapperReturnValue } from './helpers/interceptor'
fxy060608's avatar
fxy060608 已提交
43
export { requestComponentObserver } from './helpers/requestComponentObserver'