mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-30 22:41:33 +01:00
18 lines
457 B
TypeScript
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",
|
|
},
|
|
};
|