index.ts 957 字节
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 23
export * from './protocols/media/chooseImage'
export * from './protocols/media/chooseVideo'
export * from './protocols/media/getImageInfo'

fxy060608's avatar
fxy060608 已提交
24
// helpers
fxy060608's avatar
fxy060608 已提交
25
export {
26
  createOnApi,
fxy060608's avatar
fxy060608 已提交
27
  createTaskApi,
28 29
  createSyncApi,
  createAsyncApi,
fxy060608's avatar
fxy060608 已提交
30
} from './helpers/api'
fxy060608's avatar
fxy060608 已提交
31 32 33

export { handlePromise } from './helpers/api/promise'
export { invokeApi, wrapperReturnValue } from './helpers/interceptor'