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