您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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';