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

JitsiRecorderErrors.js 512B

1234567891011121314151617181920212223
  1. /**
  2. * Enumeration with the errors for the conference.
  3. * @type {{string: string}}
  4. */
  5. var JitsiRecorderErrors = {
  6. /**
  7. * Indicates that the recorder is currently unavailable.
  8. */
  9. RECORDER_UNAVAILABLE: "recorder.unavailable",
  10. /**
  11. * Indicates that the authentication token is missing.
  12. */
  13. NO_TOKEN: "recorder.noToken",
  14. /**
  15. * Indicates that a state change failed.
  16. */
  17. STATE_CHANGE_FAILED: "recorder.stateChangeFailed",
  18. };
  19. module.exports = JitsiRecorderErrors;