- added functionality to push to backend
- improved responsiveness - added reset functionality
This commit is contained in:
@@ -118,6 +118,9 @@ export type CameraSettingsAction =
|
||||
| {
|
||||
type: "SET_BRUSH_SIZE";
|
||||
payload: number;
|
||||
}
|
||||
| {
|
||||
type: "RESET_REGION_PAINTER";
|
||||
};
|
||||
|
||||
export type CameraStatus = {
|
||||
@@ -141,3 +144,12 @@ export type StoreData = {
|
||||
sanityCheck: boolean;
|
||||
sanityCheckFormula: string;
|
||||
};
|
||||
|
||||
export type ColourData = {
|
||||
id: string | number;
|
||||
cells: number[][];
|
||||
};
|
||||
|
||||
export type ColourDetectionPayload = {
|
||||
regions: ColourData[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user