This commit is contained in:
Josh Perez 2022-04-14 13:04:19 -04:00
commit b550f64a4b
7 changed files with 18 additions and 25 deletions

6
ts/window.d.ts vendored
View file

@ -148,7 +148,10 @@ declare global {
startApp: () => void;
removeSetupMenuItems: () => unknown;
showPermissionsPopup: () => Promise<void>;
showPermissionsPopup: (
forCalling: boolean,
forCamera: boolean
) => Promise<void>;
FontFace: typeof FontFace;
_: typeof Underscore;
@ -204,7 +207,6 @@ declare global {
getTitle: () => string;
waitForEmptyEventQueue: () => Promise<void>;
getVersion: () => string;
showCallingPermissionsPopup: (forCamera: boolean) => Promise<void>;
i18n: LocalizerType;
isActive: () => boolean;
isAfterVersion: (version: string, anotherVersion: string) => boolean;