ParticipantListProps type
Propiedades para onRenderParticipantList.
type ParticipantListProps = {
excludeMe?: boolean,
myUserId?: string,
onFetchParticipantMenuItems?: ParticipantMenuItemsCallback,
onRemoveParticipant?: (userId: string) => void,
onRenderAvatar?: OnRenderAvatarCallback,
onRenderParticipant?: (
participant: ParticipantListParticipant
) => Element | null,
participants: ParticipantListParticipant[],
styles?: ParticipantListStyles,
}