Home Reference Source

src/chat/ChatType.ts

/**
 * @typedef {Object} ChatType Enum with the possible types of a chat
 * @property {"individual"} INDIVIDUAL
 * @property {"group"} GROUP
 */
export enum ChatType {
	INDIVIDUAL = 'chat',
	GROUP = 'groupchat',
}