Clean up selected data for recording (#10537)

This commit is contained in:
Nicolas Mowen
2024-03-19 14:56:38 -06:00
committed by GitHub
parent f835e86df1
commit ab6bac1d2c
5 changed files with 48 additions and 53 deletions

View File

@@ -1,3 +1,5 @@
import { ReviewSeverity } from "./review";
export type Recording = {
id: string;
camera: string;
@@ -30,3 +32,9 @@ type RecordingSegmentActivity = {
count: number;
hasObjects: boolean;
};
export type RecordingStartingPoint = {
camera: string;
startTime: number;
severity: ReviewSeverity;
};