added forms and refactored component names

This commit is contained in:
2025-08-15 09:32:33 +01:00
parent 92e3617335
commit d537a32e2c
20 changed files with 640 additions and 309 deletions

View File

@@ -1,4 +1,4 @@
export type Sighting = {
export type SightingType = {
ref: number;
SaFID: string;
overviewUrl: string;
@@ -28,3 +28,15 @@ export type Sighting = {
radarSpeed: string;
trackSpeed: string;
};
export type CameraSettingValues = {
friendlyName: string;
cameraAddress: string;
userName: string;
password: string;
setupCamera: number;
};
export type CameraSettingErrorValues = Partial<
Record<keyof CameraSettingValues, string>
>;