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 324B

1234567891011
  1. export interface IRTCStatsConfiguration {
  2. analytics?: {
  3. obfuscateRoomName?: boolean;
  4. rtcstatsEnabled?: boolean;
  5. rtcstatsEndpoint?: string;
  6. rtcstatsPollInterval?: number;
  7. rtcstatsSendSdp?: boolean;
  8. rtcstatsStoreLogs?: boolean;
  9. rtcstatsUseLegacy?: boolean;
  10. };
  11. }