Home Reference Source

src/chat/ChatMessageType.ts

/**
 * @typedef {Object} ChatMessageType Enum with the possible directions of a chat message
 * @property {"file"} FILE
 * @property {"text"} TEXT
 */
export enum ChatMessageType {
	FILE = 'file',
	TEXT = 'text',
}