mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* fix(ts,connection) avoid mixing web and native code * chore(ts) split config The mobile part is still WIP. * Remove default tsconfig * Fix ts-loader - use web tsconfig * Fix tsconfig Use noEmit only on npm scripts (for type checking), but don't use it in webpack * Fix * Fix import * Fix Co-authored-by: Saúl Ibarra Corretgé <saghul@jitsi.org>
22 lines
381 B
TypeScript
22 lines
381 B
TypeScript
import { IConfig } from "./react/features/base/config/configType";
|
|
|
|
export {};
|
|
|
|
interface IWindow {
|
|
JITSI_MEET_LITE_SDK: boolean;
|
|
config: IConfig;
|
|
interfaceConfig: any;
|
|
location: URL;
|
|
}
|
|
|
|
interface INavigator {
|
|
product: string;
|
|
}
|
|
|
|
declare global {
|
|
const APP: any;
|
|
const interfaceConfig: any;
|
|
const navigator: INavigator;
|
|
const window: IWindow;
|
|
}
|