Files
main_frontend/src/features/project/SilenceResultModal/SilenceResultModal.d.ts
T
2026-02-27 23:34:17 +03:00

14 lines
227 B
TypeScript

export interface ISilenceResultModalProps {
open: boolean
onOpenChange: (open: boolean) => void
projectId: string
jobId: string
fileKey: string
}
export interface CutRegion {
id: string
startMs: number
endMs: number
}