您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

types.ts 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { IConfig } from '../../react/features/base/config/configType';
  2. import type { Participant } from './Participant';
  3. import WebhookProxy from './WebhookProxy';
  4. export type IContext = {
  5. conferenceJid: string;
  6. dialInPin: string;
  7. iframeAPI: boolean;
  8. jwtKid: string;
  9. jwtPrivateKeyPath: string;
  10. p1: Participant;
  11. p2: Participant;
  12. p3: Participant;
  13. p4: Participant;
  14. roomName: string;
  15. skipSuiteTests: boolean;
  16. times: any;
  17. webhooksProxy: WebhookProxy;
  18. };
  19. export type IJoinOptions = {
  20. /**
  21. * Config overwrites to use.
  22. */
  23. configOverwrite?: IConfig;
  24. /**
  25. * The display name to use.
  26. */
  27. displayName?: string;
  28. /**
  29. * Whether to skip setting display name.
  30. */
  31. skipDisplayName?: boolean;
  32. /**
  33. * Whether to skip setting the moderator role for the first participant (whether to use jwt for it).
  34. */
  35. skipFirstModerator?: boolean;
  36. /**
  37. * Whether to skip in meeting checks like ice connected and send receive data. For single in meeting participant.
  38. */
  39. skipInMeetingChecks?: boolean;
  40. };