mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-10 11:32:29 +00:00
21 lines
329 B
JavaScript
21 lines
329 B
JavaScript
/**
|
|
* The message type for events.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const MESSAGE_TYPE_EVENT = 'event';
|
|
|
|
/**
|
|
* The message type for requests.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const MESSAGE_TYPE_REQUEST = 'request';
|
|
|
|
/**
|
|
* The message type for responses.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const MESSAGE_TYPE_RESPONSE = 'response';
|