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.

JitsiTranscriptionStatus.js 164B

12345678910111213
  1. /**
  2. * The transciption is on.
  3. *
  4. * @type {String}
  5. */
  6. export const ON = 'on';
  7. /**
  8. * The transciption is off.
  9. *
  10. * @type {String}
  11. */
  12. export const OFF = 'off';