UNPKG

@amityco/ts-sdk-react-native

Version:

Amity Social Cloud Typescript SDK

13 lines (11 loc) 391 B
import { getActiveClient } from '~/client/api/activeClient'; import { createEventSubscriber } from '~/core/events'; /** @hidden */ export const onSubChannelFetched = (callback: Amity.Listener<Amity.SubChannel>) => { return createEventSubscriber( getActiveClient(), 'onSubChannelFetched', 'local.message-feed.fetched', payload => callback(payload.messageFeeds[0]), ); };