fix types

This commit is contained in:
Josh Hawkins 2024-12-08 12:02:24 -06:00
parent d263026ab4
commit 9be1454f10
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ export type Polygon = {
objects: string[];
points: number[][];
pointsOrder?: number[];
distances: number[];
isFinished: boolean;
color: number[];
};

View File

@ -214,7 +214,7 @@ export interface CameraConfig {
zones: {
[zoneName: string]: {
coordinates: string;
distances: string;
distances: string[];
filters: Record<string, unknown>;
inertia: number;
loitering_time: number;