8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
export const SIDEBAR_PREFERENCE_KEY = "fiscal-shell-sidebar-collapsed";
|
|
|
|
export function parseSidebarPreference(
|
|
value: string | null | undefined,
|
|
): boolean {
|
|
return value === "true";
|
|
}
|