UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

15 lines 613 B
import { CallClientState, RemoteParticipantState } from "../../calling-stateful-client/src"; import { CallingBaseSelectorProps } from './baseSelectors'; /** * Selector type for all remote participants. * @public */ export type AllRemoteParticipantsSelector = (state: CallClientState, props: CallingBaseSelectorProps) => { [key: string]: RemoteParticipantState; } | undefined; /** * Selector for all remote participants in a call, active and inactive. * @public */ export declare const allRemoteParticipantsSelector: AllRemoteParticipantsSelector; //# sourceMappingURL=remoteParticipantsSelector.d.ts.map