add fields to frontend type

This commit is contained in:
Josh Hawkins 2025-03-17 13:15:51 -05:00
parent 0e515ac6da
commit 3539e50ed4

View File

@ -391,6 +391,12 @@ export interface FrigateConfig {
colormap: { [key: string]: [number, number, number] }; colormap: { [key: string]: [number, number, number] };
attributes_map: { [key: string]: [string] }; attributes_map: { [key: string]: [string] };
all_attributes: [string]; all_attributes: [string];
plus?: {
name: string;
trainDate: string;
baseModel: string;
supportedDetectors: string[];
};
}; };
motion: Record<string, unknown> | null; motion: Record<string, unknown> | null;