Add CameraSettings context and provider; integrate into AppProviders and VideoFeed

This commit is contained in:
2025-12-22 16:10:34 +00:00
parent 6879e30b9c
commit 70083d9c60
10 changed files with 118 additions and 13 deletions

View File

@@ -51,3 +51,11 @@ export type NpedJSON = {
vrm: string;
"INSURANCE STATUS": string;
};
export type CameraSettings = {
mode: number;
};
export type CameraSettingsAction = {
type: "SET_MODE";
payload: number;
};