2026-04-24 16:16:31 +08:00
|
|
|
// @xuqm/rn-sdk — convenience meta-package re-exporting all modules.
|
|
|
|
|
// For tree-shaking and smaller bundles, import from individual packages:
|
|
|
|
|
// @xuqm/rn-common | @xuqm/rn-im | @xuqm/rn-push | @xuqm/rn-update
|
2026-04-21 22:07:29 +08:00
|
|
|
|
2026-04-24 16:16:31 +08:00
|
|
|
export { XuqmSDK } from '@xuqm/rn-common'
|
|
|
|
|
export type { XuqmInitOptions } from '@xuqm/rn-common'
|
2026-04-21 22:07:29 +08:00
|
|
|
|
2026-04-24 16:16:31 +08:00
|
|
|
export { ImSDK } from '@xuqm/rn-im'
|
|
|
|
|
export { ImClient } from '@xuqm/rn-im'
|
|
|
|
|
export type {
|
|
|
|
|
ImMessage, ImGroup, ChatType, MsgType, MsgStatus,
|
|
|
|
|
ImEventListener, SendMessageParams,
|
|
|
|
|
} from '@xuqm/rn-im'
|
2026-04-21 22:07:29 +08:00
|
|
|
|
2026-04-24 16:16:31 +08:00
|
|
|
export { PushSDK } from '@xuqm/rn-push'
|
|
|
|
|
export type { PushVendor } from '@xuqm/rn-push'
|
|
|
|
|
|
|
|
|
|
export { UpdateSDK } from '@xuqm/rn-update'
|
|
|
|
|
export type { PluginMeta, AppUpdateInfo, RnUpdateInfo, CachedRnBundle } from '@xuqm/rn-update'
|