mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-07 05:45:11 +02:00
26 lines
515 B
TypeScript
26 lines
515 B
TypeScript
export type SettingsSection =
|
|
| 'radio'
|
|
| 'identity'
|
|
| 'connectivity'
|
|
| 'database'
|
|
| 'bot'
|
|
| 'statistics';
|
|
|
|
export const SETTINGS_SECTION_ORDER: SettingsSection[] = [
|
|
'radio',
|
|
'identity',
|
|
'connectivity',
|
|
'database',
|
|
'bot',
|
|
'statistics',
|
|
];
|
|
|
|
export const SETTINGS_SECTION_LABELS: Record<SettingsSection, string> = {
|
|
radio: '📻 Radio',
|
|
identity: '🪪 Identity',
|
|
connectivity: '📡 Connectivity',
|
|
database: '🗄️ Database',
|
|
bot: '🤖 Bot',
|
|
statistics: '📊 Statistics',
|
|
};
|