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-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-09-23 09:03:25 +00:00
|
|
|
}
|
2022-10-07 08:39:18 +00:00
|
|
|
|
|
|
|
const config: IConfig;
|
2022-09-19 07:40:03 +00:00
|
|
|
}
|