communication-react-19
Version:
React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)
12 lines • 305 B
TypeScript
/**
* A Chat or Calling participant's state, as reflected in the UI.
*
* @public
*/
export type CommunicationParticipant = {
/** User ID of participant */
userId: string;
/** Display name of participant */
displayName?: string;
};
//# sourceMappingURL=CommunicationParticipant.d.ts.map