added forms and refactored component names
This commit is contained in:
@@ -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>
|
||||
>;
|
||||
|
||||
Reference in New Issue
Block a user