Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

JitsiTranscriptionStatus.ts 306B

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