You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 578B

1234567891011121314151617181920212223242526
  1. // @flow
  2. export const CHAT_VIEW_MODAL_ID = 'chatView';
  3. /**
  4. * The audio ID of the audio element for which the {@link playAudio} action is
  5. * triggered when new chat message is received.
  6. *
  7. * @type {string}
  8. */
  9. export const INCOMING_MSG_SOUND_ID = 'INCOMING_MSG_SOUND';
  10. /**
  11. * The {@code messageType} of error (system) messages.
  12. */
  13. export const MESSAGE_TYPE_ERROR = 'error';
  14. /**
  15. * The {@code messageType} of local messages.
  16. */
  17. export const MESSAGE_TYPE_LOCAL = 'local';
  18. /**
  19. * The {@code messageType} of remote messages.
  20. */
  21. export const MESSAGE_TYPE_REMOTE = 'remote';