Home Reference Source

src/chat/ChatMessageDirection.ts

/**
 * @typedef {Object} ChatMessageDirection Enum with the possible directions of a chat message
 * @property {"incoming"} INCOMING
 * @property {"outgoing"} OUTGOING
 */
export enum ChatMessageDirection {
	INCOMING = 'incoming',
	OUTGOING = 'outgoing',
}