(duration: number)
| 27 | } |
| 28 | |
| 29 | function getValidDuration(duration: number) { |
| 30 | return Number.isFinite(duration) && duration > 0 ? duration : undefined; |
| 31 | } |
| 32 | |
| 33 | export async function processVideoWorkflow( |
| 34 | payload: ProcessVideoWorkflowPayload, |
no outgoing calls
no test coverage detected