Home Reference Source

src/chat/ChatParticipantRole.ts

/**
 * @typedef {Object} ChatParticipantRole Enum with the possible roles of a chat participant
 * @property {"member"} MEMBER
 * @property {"admin"} ADMIN
 */
export enum ChatParticipantRole {
	MEMBER = 'member',
	ADMIN = 'owner',
}