Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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;