2022-09-23 10:48:20 +03:00
|
|
|
import { IStore } from "./react/features/app/types";
|
2022-09-23 12:03:25 +03:00
|
|
|
import { IConfig } from "./react/features/base/config/configType";
|
2022-09-23 10:48:20 +03:00
|
|
|
|
2022-09-19 10:40:03 +03:00
|
|
|
export {};
|
|
|
|
|
|
|
|
|
|
declare global {
|
2022-09-23 10:48:20 +03:00
|
|
|
const APP: {
|
|
|
|
|
store: IStore;
|
|
|
|
|
UI: any;
|
|
|
|
|
API: any;
|
|
|
|
|
conference: any;
|
|
|
|
|
};
|
2022-09-19 10:40:03 +03:00
|
|
|
const interfaceConfig: any;
|
2022-09-23 12:03:25 +03:00
|
|
|
|
|
|
|
|
interface Window {
|
2022-10-07 11:39:18 +03:00
|
|
|
config: IConfig;
|
2022-09-29 14:45:34 +03:00
|
|
|
JITSI_MEET_LITE_SDK?: boolean;
|
2022-09-30 12:08:03 +03:00
|
|
|
interfaceConfig?: any;
|
2022-09-23 12:03:25 +03:00
|
|
|
}
|
2022-10-07 11:39:18 +03:00
|
|
|
|
|
|
|
|
const config: IConfig;
|
2022-09-19 10:40:03 +03:00
|
|
|
}
|