ref(TS) Convert some base files to TS (#12226)

This commit is contained in:
Robert Pintilii
2022-09-23 12:03:25 +03:00
committed by GitHub
parent 7cbb377a66
commit 4ee77b1f65
22 changed files with 111 additions and 111 deletions

5
globals.d.ts vendored
View File

@@ -1,4 +1,5 @@
import { IStore } from "./react/features/app/types";
import { IConfig } from "./react/features/base/config/configType";
export {};
@@ -10,4 +11,8 @@ declare global {
conference: any;
};
const interfaceConfig: any;
interface Window {
config?: IConfig;
}
}