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.

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. }