Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
19 lines
568 B
Plaintext
19 lines
568 B
Plaintext
/**
|
|
* Centralized preference keys used throughout Payload admin UI.
|
|
* Import these constants instead of using string literals to prevent typos.
|
|
*/
|
|
export declare const PREFERENCE_KEYS: {
|
|
/**
|
|
* Stores browse by folder view state
|
|
*/
|
|
readonly BROWSE_BY_FOLDER: "browse-by-folder";
|
|
/**
|
|
* Stores dashboard layout configuration
|
|
*/
|
|
readonly DASHBOARD_LAYOUT: "dashboard-layout";
|
|
/**
|
|
* Stores navigation group collapse/expand state and nav open/closed state
|
|
*/
|
|
readonly NAV: "nav";
|
|
};
|
|
//# sourceMappingURL=keys.d.ts.map |