feature: obsługa hashy

This commit is contained in:
2023-02-11 18:13:00 +01:00
parent 14ec54d11d
commit 0517106dfe
3 changed files with 7 additions and 3 deletions
+4 -1
View File
@@ -1,6 +1,7 @@
export type Availability = 'default' | 'unavailable' | 'nonPublic' | 'abandoned' | 'nonDefault';
export type ChangeProp =
| 'name'
| 'hash'
| 'url'
| 'lines'
| 'project'
@@ -17,9 +18,10 @@ export type ChangeProp =
export enum HeaderTypes {
name = 'Nazwa',
url = 'URL',
hash = 'Hash',
lines = 'Linie',
project = 'Projekt',
projectUrl = "URL projektu",
projectUrl = 'URL projektu',
reqLevel = 'Wym. poziom',
signalType = 'Sygnalizacja',
controlType = 'Sterowanie',
@@ -41,6 +43,7 @@ export enum AvailabilityTypes {
export interface SceneryRowItem {
id: string;
hash: string;
name: string;
url: string;
lines: string;