1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-27 10:46:02 +02:00
bitwarden-browser/apps/browser/src/models/biometricErrors.ts
2022-05-03 19:38:55 +02:00

18 lines
457 B
TypeScript

type BiometricError = {
title: string;
description: string;
};
export type BiometricErrorTypes = "startDesktop" | "desktopIntegrationDisabled";
export const BiometricErrors: Record<BiometricErrorTypes, BiometricError> = {
startDesktop: {
title: "startDesktopTitle",
description: "startDesktopDesc",
},
desktopIntegrationDisabled: {
title: "desktopIntegrationDisabledTitle",
description: "desktopIntegrationDisabledDesc",
},
};