2022-09-23 07:48:20 +00:00
|
|
|
import { IStore } from "./react/features/app/types";
|
2022-09-23 09:03:25 +00:00
|
|
|
import { IConfig } from "./react/features/base/config/configType";
|
2022-09-23 07:48:20 +00:00
|
|
|
|
2022-09-19 07:40:03 +00:00
|
|
|
export {};
|
|
|
|
|
|
|
|
declare global {
|
2022-09-23 07:48:20 +00:00
|
|
|
const APP: {
|
|
|
|
store: IStore;
|
|
|
|
UI: any;
|
|
|
|
API: any;
|
|
|
|
conference: any;
|
2022-11-03 08:35:51 +00:00
|
|
|
debugLogs: any;
|
|
|
|
keyboardshortcut: {
|
|
|
|
registerShortcut: Function;
|
|
|
|
unregisterShortcut: Function;
|
2022-11-23 09:12:26 +00:00
|
|
|
openDialog: Function;
|
2022-11-28 10:52:24 +00:00
|
|
|
enable: Function;
|
2022-11-03 08:35:51 +00:00
|
|
|
}
|
2022-09-23 07:48:20 +00:00
|
|
|
};
|
2022-09-19 07:40:03 +00:00
|
|
|
const interfaceConfig: any;
|
2022-09-23 09:03:25 +00:00
|
|
|
|
|
|
|
interface Window {
|
2022-10-07 08:39:18 +00:00
|
|
|
config: IConfig;
|
2022-09-29 11:45:34 +00:00
|
|
|
JITSI_MEET_LITE_SDK?: boolean;
|
2022-09-30 09:08:03 +00:00
|
|
|
interfaceConfig?: any;
|
2022-10-11 10:47:54 +00:00
|
|
|
JitsiMeetJS?: any;
|
2022-12-14 12:23:07 +00:00
|
|
|
JitsiMeetElectron?: any;
|
2022-09-23 09:03:25 +00:00
|
|
|
}
|
2022-10-07 08:39:18 +00:00
|
|
|
|
|
|
|
const config: IConfig;
|
2022-10-17 11:28:01 +00:00
|
|
|
|
|
|
|
const JitsiMeetJS: any;
|
2022-09-19 07:40:03 +00:00
|
|
|
}
|