Files
jitsi-meet/globals.native.d.ts
Robert Pintilii 442ae6c3cb chore(TS): Create web tsconfig (#12381)
* 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>
2022-10-18 11:21:48 -05:00

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;
}