14 lines
227 B
TypeScript
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
|
|
}
|