index.ts 1.0 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
export * from './service/ui/createIntersectionObserver'
fxy060608's avatar
fxy060608 已提交
6
export * from './service/ui/createSelectorQuery'
fxy060608's avatar
fxy060608 已提交
7

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

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

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

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

fxy060608's avatar
fxy060608 已提交
20 21 22
export * from './protocols/media/chooseImage'
export * from './protocols/media/chooseVideo'
export * from './protocols/media/getImageInfo'
fxy060608's avatar
fxy060608 已提交
23
export * from './protocols/route/route'
fxy060608's avatar
fxy060608 已提交
24

fxy060608's avatar
fxy060608 已提交
25
// helpers
fxy060608's avatar
fxy060608 已提交
26
export {
fxy060608's avatar
fxy060608 已提交
27 28 29 30
  defineOnApi,
  defineTaskApi,
  defineSyncApi,
  defineAsyncApi,
fxy060608's avatar
fxy060608 已提交
31
} from './helpers/api'
fxy060608's avatar
fxy060608 已提交
32

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

fxy060608's avatar
fxy060608 已提交
35 36
export { handlePromise } from './helpers/api/promise'
export { invokeApi, wrapperReturnValue } from './helpers/interceptor'