Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
43 lines
956 B
TypeScript
43 lines
956 B
TypeScript
import { IStore } from "./react/features/app/types";
|
|
import { IConfig } from "./react/features/base/config/configType";
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
const APP: {
|
|
store: IStore;
|
|
UI: any;
|
|
API: any;
|
|
conference: any;
|
|
debugLogs: any;
|
|
};
|
|
const interfaceConfig: any;
|
|
|
|
interface Window {
|
|
config: IConfig;
|
|
JITSI_MEET_LITE_SDK?: boolean;
|
|
interfaceConfig?: any;
|
|
JitsiMeetJS?: any;
|
|
PressureObserver?: any;
|
|
PressureRecord?: any;
|
|
ReactNativeWebView?: any;
|
|
// selenium tests handler
|
|
_sharedVideoPlayer: any;
|
|
alwaysOnTop: { api: any };
|
|
}
|
|
|
|
interface Document {
|
|
mozCancelFullScreen?: Function;
|
|
webkitExitFullscreen?: Function;
|
|
}
|
|
|
|
const config: IConfig;
|
|
|
|
const JitsiMeetJS: any;
|
|
|
|
interface HTMLMediaElement {
|
|
setSinkId: (id: string) => Promise<undefined>;
|
|
stop: () => void;
|
|
}
|
|
}
|