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

globals.d.ts 342B

12345678910111213
  1. export {};
  2. declare global {
  3. interface Window {
  4. connectionTimes: any;
  5. }
  6. interface RTCRtpReceiver {
  7. createEncodedStreams?: () => {
  8. readable: ReadableStream<RTCEncodedAudioFrame | RTCEncodedVideoFrame>;
  9. writable: WritableStream<RTCEncodedAudioFrame | RTCEncodedVideoFrame>;
  10. }
  11. }
  12. }