diff --git a/src/pages/MainPage.tsx b/src/pages/MainPage.tsx index 4ed4af8a..9f2a1187 100644 --- a/src/pages/MainPage.tsx +++ b/src/pages/MainPage.tsx @@ -19,6 +19,11 @@ export interface CreateRunResponse { runId: string; } +export interface ScheduleRunResponse { + message: string; + runId: string; +} + export const MainPage = ({ handleEditRecording }: MainPageProps) => { const [content, setContent] = React.useState('recordings');