mirror of
https://github.com/bitwarden/browser
synced 2026-01-06 02:23:44 +00:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
import { KeyDefinition, VAULT_FILTER_DISK } from "../../../platform/state";
|
|
|
|
export const COLLAPSED_GROUPINGS = KeyDefinition.array<string>(
|
|
VAULT_FILTER_DISK,
|
|
"collapsedGroupings",
|
|
{
|
|
deserializer: (obj) => obj,
|
|
},
|
|
);
|