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

globals.d.ts 989B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import { IStore } from "./react/features/app/types";
  2. import { IConfig } from "./react/features/base/config/configType";
  3. export {};
  4. declare global {
  5. const APP: {
  6. store: IStore;
  7. UI: any;
  8. API: any;
  9. conference: any;
  10. debugLogs: any;
  11. };
  12. const interfaceConfig: any;
  13. interface Window {
  14. config: IConfig;
  15. JITSI_MEET_LITE_SDK?: boolean;
  16. interfaceConfig?: any;
  17. JitsiMeetJS?: any;
  18. JitsiMeetElectron?: any;
  19. PressureObserver?: any;
  20. PressureRecord?: any;
  21. ReactNativeWebView?: any;
  22. // selenium tests handler
  23. _sharedVideoPlayer: any;
  24. alwaysOnTop: { api: any };
  25. }
  26. interface Document {
  27. mozCancelFullScreen?: Function;
  28. webkitExitFullscreen?: Function;
  29. }
  30. const config: IConfig;
  31. const JitsiMeetJS: any;
  32. interface HTMLMediaElement {
  33. setSinkId: (id: string) => Promise<undefined>;
  34. stop: () => void;
  35. }
  36. }