UNPKG

webcom-reach

Version:
85 lines (84 loc) 1.38 kB
/** * OPENED * @access protected * @type {string} */ export const OPENED = 'OPENED'; /** * CLOSED * @access protected * @type {string} */ export const CLOSED = 'CLOSED'; /** * CLOSING * @access protected * @type {string} */ export const CLOSING = 'CLOSING'; /** * CONNECTED * @access protected * @type {string} */ export const CONNECTED = 'CONNECTED'; /** * NOT_CONNECTED * @access protected * @type {string} */ export const NOT_CONNECTED = 'NOT_CONNECTED'; /** * WAS_CONNECTED * @access protected * @type {string} */ export const WAS_CONNECTED = 'WAS_CONNECTED'; /** * OWNER * @access protected * @type {string} */ export const OWNER = 'OWNER'; /** * MODERATOR * @access protected * @type {string} */ export const MODERATOR = 'MODERATOR'; /** * PARTICIPANT * @access protected * @type {string} */ export const PARTICIPANT = 'PARTICIPANT'; /** * NONE * @access protected * @type {string} */ export const NONE = 'NONE'; /** * Ongoing invitation * @access protected * @type {string} */ export const ONGOING = 'ONGOING'; /** * Accepted invitation * @access protected * @type {string} */ export const ACCEPTED = 'ACCEPTED'; /** * Rejected invitation * @access protected * @type {string} */ export const REJECTED = 'REJECTED'; /** * Canceled invitation * @access protected * @type {string} */ export const CANCELED = 'CANCELED';