( projectPath: string, settings: ExportSettings, onProgress: (progress: FramesRendered) => void, )
| 121 | } |
| 122 | |
| 123 | export async function exportVideo( |
| 124 | projectPath: string, |
| 125 | settings: ExportSettings, |
| 126 | onProgress: (progress: FramesRendered) => void, |
| 127 | ) { |
| 128 | const { promise } = createExportTask(projectPath, settings, onProgress); |
| 129 | return await promise; |
| 130 | } |
no test coverage detected