mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
export const headIds = [
|
|
'station',
|
|
'min-lvl',
|
|
'status',
|
|
'dispatcher',
|
|
'dispatcher-lvl',
|
|
'routes',
|
|
'general',
|
|
] as const;
|
|
|
|
export const headIconsIds = ['user', 'spawn', 'timetableAll', 'timetableConfirmed', 'timetableUnconfirmed'] as const;
|
|
|
|
export type HeadIdsTypes = typeof headIds[number] | typeof headIconsIds[number];
|