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 329B

1234567891011121314151617181920
  1. /**
  2. * The message type for events.
  3. *
  4. * @type {string}
  5. */
  6. export const MESSAGE_TYPE_EVENT = 'event';
  7. /**
  8. * The message type for requests.
  9. *
  10. * @type {string}
  11. */
  12. export const MESSAGE_TYPE_REQUEST = 'request';
  13. /**
  14. * The message type for responses.
  15. *
  16. * @type {string}
  17. */
  18. export const MESSAGE_TYPE_RESPONSE = 'response';