mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-01 02:53:00 +02:00
32 lines
611 B
TypeScript
32 lines
611 B
TypeScript
export type SettingsSection =
|
|
| 'radio'
|
|
| 'identity'
|
|
| 'connectivity'
|
|
| 'mqtt'
|
|
| 'database'
|
|
| 'bot'
|
|
| 'statistics'
|
|
| 'about';
|
|
|
|
export const SETTINGS_SECTION_ORDER: SettingsSection[] = [
|
|
'radio',
|
|
'identity',
|
|
'connectivity',
|
|
'database',
|
|
'bot',
|
|
'mqtt',
|
|
'statistics',
|
|
'about',
|
|
];
|
|
|
|
export const SETTINGS_SECTION_LABELS: Record<SettingsSection, string> = {
|
|
radio: '📻 Radio',
|
|
identity: '🪪 Identity',
|
|
connectivity: '📡 Connectivity',
|
|
database: '🗄️ Database & Interface',
|
|
bot: '🤖 Bots',
|
|
mqtt: '📤 MQTT',
|
|
statistics: '📊 Statistics',
|
|
about: 'About',
|
|
};
|