import { UserId } from "@bitwarden/common/types/guid"; import { UserKey } from "@bitwarden/common/types/key"; import { BiometricsService, BiometricsStatus } from "@bitwarden/key-management"; export class CliBiometricsService extends BiometricsService { async authenticateWithBiometrics(): Promise { return false; } async getBiometricsStatus(): Promise { return BiometricsStatus.PlatformUnsupported; } async unlockWithBiometricsForUser(userId: UserId): Promise { return null; } async getBiometricsStatusForUser(userId: UserId): Promise { return BiometricsStatus.PlatformUnsupported; } async getShouldAutopromptNow(): Promise { return false; } async setShouldAutopromptNow(value: boolean): Promise {} }