feat: return promise schedule recording

This commit is contained in:
Rohit
2025-08-08 14:30:55 +05:30
parent e0707df62f
commit 9c895c6a7d

View File

@@ -14,7 +14,7 @@ import { useTranslation } from "react-i18next";
interface RecordingsProps {
handleEditRecording: (id: string, fileName: string) => void;
handleRunRecording: (settings: RunSettings) => void;
handleScheduleRecording: (settings: ScheduleSettings) => void;
handleScheduleRecording: (settings: ScheduleSettings) => Promise<boolean>;
setRecordingInfo: (id: string, name: string) => void;
}