mirror of
https://github.com/bitwarden/browser
synced 2026-02-22 04:14:04 +00:00
* Prevent log-out when changing KDF settings (except old clients) * test coverage * logout reason enum
7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
export const PushNotificationLogOutReasonType = Object.freeze({
|
|
KdfChange: 0,
|
|
} as const);
|
|
|
|
export type PushNotificationLogOutReasonType =
|
|
(typeof PushNotificationLogOutReasonType)[keyof typeof PushNotificationLogOutReasonType];
|