1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

isViewOpen returns promise

This commit is contained in:
Kyle Spearrin
2019-08-20 13:47:15 -04:00
parent 1f98a2ebcb
commit ae37c2198b
4 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ export abstract class PlatformUtilsService {
isIE: () => boolean;
isMacAppStore: () => boolean;
analyticsId: () => string;
isViewOpen: () => boolean;
isViewOpen: () => Promise<boolean>;
lockTimeout: () => number;
launchUri: (uri: string, options?: any) => void;
saveFile: (win: Window, blobData: any, blobOptions: any, fileName: string) => void;