10 lines
137 B
TypeScript
10 lines
137 B
TypeScript
export interface IFragmentsStepProps {
|
|
className?: string
|
|
}
|
|
|
|
export interface CutRegion {
|
|
id: string
|
|
startMs: number
|
|
endMs: number
|
|
}
|