18 lines
432 B
TypeScript
18 lines
432 B
TypeScript
export const SETTINGS_MENUS = ["options", "clock", "user", "touchScreen"] as const;
|
|
|
|
export const SETTINGS_SUB_MENUS = [
|
|
"optionsLanguage",
|
|
"optionsGbaMode",
|
|
"optionsStartUp",
|
|
"clockAlarm",
|
|
"clockTime",
|
|
"clockDate",
|
|
"userBirthday",
|
|
"userName",
|
|
"userMessage",
|
|
"userColor",
|
|
] as const;
|
|
|
|
export type SettingsMenu = (typeof SETTINGS_MENUS)[number];
|
|
export type SettingsSubMenu = (typeof SETTINGS_SUB_MENUS)[number];
|