UNPKG

communication-react-19

Version:

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

19 lines 658 B
import { ChatBaseSelectorProps } from './baseSelectors'; import { ParticipantListParticipant } from "../../react-components/src"; import { ChatClientState } from "../../chat-stateful-client/src"; /** * Selector type for {@link ParticipantList} component. * * @public */ export type ChatParticipantListSelector = (state: ChatClientState, props: ChatBaseSelectorProps) => { myUserId: string; participants: ParticipantListParticipant[]; }; /** * Selector for {@link ParticipantList} component. * * @public */ export declare const chatParticipantListSelector: ChatParticipantListSelector; //# sourceMappingURL=chatParticipantListSelector.d.ts.map