Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

globals.d.ts 956B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. PressureObserver?: any;
  19. PressureRecord?: any;
  20. ReactNativeWebView?: any;
  21. // selenium tests handler
  22. _sharedVideoPlayer: any;
  23. alwaysOnTop: { api: any };
  24. }
  25. interface Document {
  26. mozCancelFullScreen?: Function;
  27. webkitExitFullscreen?: Function;
  28. }
  29. const config: IConfig;
  30. const JitsiMeetJS: any;
  31. interface HTMLMediaElement {
  32. setSinkId: (id: string) => Promise<undefined>;
  33. stop: () => void;
  34. }
  35. }