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.

recordingConstants.js 390B

123456789101112131415161718
  1. export default {
  2. error: {
  3. BUSY: 'busy',
  4. ERROR: 'error',
  5. RESOURCE_CONSTRAINT: 'resource-constraint',
  6. UNEXPECTED_REQUEST: 'unexpected-request',
  7. SERVICE_UNAVAILABLE: 'service-unavailable'
  8. },
  9. mode: {
  10. FILE: 'file',
  11. STREAM: 'stream'
  12. },
  13. status: {
  14. OFF: 'off',
  15. ON: 'on',
  16. PENDING: 'pending'
  17. }
  18. };