UNPKG

@amityco/ts-sdk-react-native

Version:

Amity Social Cloud Typescript SDK

20 lines (18 loc) 614 B
import { createFollowEventSubscriber } from './utils'; /** * ```js * import { onUserFollowed } from '@amityco/ts-sdk-react-native' * const dispose = onUserFollowed(status => { * // ... * }) * ``` * * Fired when a user follows another users and confirmation is not required * * @param callback The function to call when the event was fired * @returns an {@link Amity.Unsubscriber} function to stop listening * * @category Follow Events */ export const onUserFollowed = (callback: Amity.Listener<Amity.FollowStatus>): Amity.Unsubscriber => createFollowEventSubscriber('follow.created', callback);