UNPKG

@sendbird/calls-react-native

Version:

Sendbird Calls SDK for React Native: Empower React Native apps with seamless audio, video, and group calling. Build interactive communication easily.

9 lines (8 loc) 272 B
declare type Listener = (...args: unknown[]) => void; export default class JSEventEmitter { private eventPool; private getListenerPool; addListener(event: string, listener: Listener): () => void; emit(event: string, ...args: unknown[]): void; } export {};