Files
standardnotes-app-web/packages/ui-services/src/Preferences/PreferenceId.ts
2023-04-26 19:02:19 +05:30

16 lines
263 B
TypeScript

const PREFERENCE_IDS = [
'general',
'account',
'security',
'appearance',
'backups',
'listed',
'shortcuts',
'accessibility',
'get-free-month',
'help-feedback',
'whats-new',
] as const
export type PreferenceId = typeof PREFERENCE_IDS[number]