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

interfaces.ts 416B

123456789101112131415161718
  1. export interface IWatchRTCConfiguration {
  2. allowBrowserLogCollection?: boolean;
  3. collectionInterval?: number;
  4. console?: {
  5. level: string;
  6. override: boolean;
  7. };
  8. debug?: boolean;
  9. keys?: any;
  10. logGetStats?: boolean;
  11. proxyUrl?: string;
  12. rtcApiKey: string;
  13. rtcPeerId?: string;
  14. rtcRoomId?: string;
  15. rtcTags?: string[];
  16. rtcToken?: string;
  17. wsUrl?: string;
  18. }