mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
* Make fingerprint optional for browser integration * Force focus on biometrics * Add dependency
14 lines
857 B
TypeScript
14 lines
857 B
TypeScript
export class ElectronConstants {
|
|
static readonly enableMinimizeToTrayKey: string = 'enableMinimizeToTray';
|
|
static readonly enableCloseToTrayKey: string = 'enableCloseToTray';
|
|
static readonly enableTrayKey: string = 'enableTray';
|
|
static readonly enableStartToTrayKey: string = 'enableStartToTrayKey';
|
|
static readonly enableAlwaysOnTopKey: string = 'enableAlwaysOnTopKey';
|
|
static readonly minimizeOnCopyToClipboardKey: string = 'minimizeOnCopyToClipboardKey';
|
|
static readonly enableBiometric: string = 'enabledBiometric';
|
|
static readonly enableBrowserIntegration: string = 'enableBrowserIntegration';
|
|
static readonly enableBrowserIntegrationFingerprint: string = 'enableBrowserIntegrationFingerprint'
|
|
static readonly alwaysShowDock: string = 'alwaysShowDock';
|
|
static readonly openAtLogin: string = 'openAtLogin';
|
|
}
|