communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
20 lines • 707 B
TypeScript
import { CallClientState } from "../../calling-stateful-client/src";
import { CallingBaseSelectorProps } from './baseSelectors';
import { CallParticipantListParticipant } from "../../react-components/src";
/**
* Selector type for {@link ParticipantList} component.
*
* @public
*/
export type ParticipantListSelector = (state: CallClientState, props: CallingBaseSelectorProps) => {
participants: CallParticipantListParticipant[];
myUserId: string;
totalParticipantCount?: number;
};
/**
* Selects data that drives {@link ParticipantList} component.
*
* @public
*/
export declare const participantListSelector: ParticipantListSelector;
//# sourceMappingURL=participantListSelector.d.ts.map