UNPKG

@sendbird/uikit-react-native

Version:

Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

7 lines (6 loc) 188 B
export type PubSub<T> = { publish: (data: T) => void; subscribe: (subscriber: (data: T) => void) => () => void; }; declare const pubsub: <T>() => PubSub<T>; export default pubsub;