import { BiometricsService } from "@bitwarden/common/platform/biometrics/biometric.service"; export class WebBiometricsService extends BiometricsService { async supportsBiometric(): Promise { return false; } async isBiometricUnlockAvailable(): Promise { return false; } async authenticateBiometric(): Promise { throw new Error("Method not implemented."); } async biometricsNeedsSetup(): Promise { throw new Error("Method not implemented."); } async biometricsSupportsAutoSetup(): Promise { throw new Error("Method not implemented."); } async biometricsSetup(): Promise { throw new Error("Method not implemented."); } }