mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-09-17 00:14:18 +00:00
20 lines
510 B
TypeScript
20 lines
510 B
TypeScript
export type SettingsSection = 'radio' | 'local' | 'database' | 'fanout' | 'statistics' | 'about';
|
|
|
|
export const SETTINGS_SECTION_ORDER: SettingsSection[] = [
|
|
'radio',
|
|
'local',
|
|
'database',
|
|
'fanout',
|
|
'statistics',
|
|
'about',
|
|
];
|
|
|
|
export const SETTINGS_SECTION_LABELS: Record<SettingsSection, string> = {
|
|
radio: '📻 Radio',
|
|
local: '🖥️ Local Configuration',
|
|
database: '🗄️ Database & Messaging',
|
|
fanout: '📤 Fanout & Forwarding',
|
|
statistics: '📊 Statistics',
|
|
about: 'About',
|
|
};
|