- added OSD configuration components and hooks for managing overlay settings
This commit is contained in:
@@ -73,7 +73,16 @@ export type InitialValuesFormErrors = {
|
||||
readTimeoutSeconds?: string;
|
||||
};
|
||||
|
||||
export type FormTypes = BearerTypeFields & OptionalConstants & OptionalLaneIDs & CustomFields;
|
||||
export type OSDConfigFields = {
|
||||
includeVRM: boolean;
|
||||
includeMotion: boolean;
|
||||
includeTimeStamp: boolean;
|
||||
includeCameraName: boolean;
|
||||
overlayPosition: "Top" | "Bottom" | "Left" | "Right";
|
||||
OSDTimestampFormat: "UTC" | "LOCAL";
|
||||
};
|
||||
|
||||
export type FormTypes = BearerTypeFields & OptionalConstants & OptionalLaneIDs & CustomFields & OSDConfigFields;
|
||||
type FieldProperty = {
|
||||
datatype: string;
|
||||
value: string;
|
||||
|
||||
Reference in New Issue
Block a user