mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-02 21:08:12 +00:00
15 lines
298 B
TypeScript
15 lines
298 B
TypeScript
export const headIds = [
|
|
'station',
|
|
'abbr',
|
|
'min-lvl',
|
|
'status',
|
|
'dispatcher',
|
|
'dispatcher-lvl',
|
|
'routes',
|
|
'general',
|
|
] as const;
|
|
|
|
export const headIconsIds = ['user', 'spawn', 'timetable'] as const;
|
|
|
|
export type HeadIdsTypes = typeof headIds[number] | typeof headIconsIds[number];
|