1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

feat(PlatformUtils): [Auth/PM-25817] New PlatformUtilsService.isChromium() method (#16468)

This commit is contained in:
Jared Snider
2025-09-18 14:36:35 -04:00
committed by GitHub
parent d6cd30cf54
commit 42ec956782
7 changed files with 75 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ export abstract class PlatformUtilsService {
abstract isOpera(): boolean;
abstract isVivaldi(): boolean;
abstract isSafari(): boolean;
abstract isChromium(): boolean;
abstract isMacAppStore(): boolean;
abstract isPopupOpen(): Promise<boolean>;
abstract launchUri(uri: string, options?: any): void;