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.ts 307B

12345678910111213141516
  1. export enum JitsiTranscriptionStatus {
  2. /**
  3. * The transcription is off.
  4. */
  5. OFF = 'OFF',
  6. /**
  7. * The transcription is on.
  8. */
  9. ON = 'ON'
  10. }
  11. // exported for backward compatibility
  12. export const ON = JitsiTranscriptionStatus.ON;
  13. export const OFF = JitsiTranscriptionStatus.OFF;