Rewrite frontend as single self-contained HTML file — all CSS/JS inline, no external files to fail loading

This commit is contained in:
2026-05-13 17:24:10 +02:00
parent 3432d362e2
commit ddb0f88257
116 changed files with 4240 additions and 921 deletions

9
dist/utils/costEstimator.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
import { Config } from '../config/config';
import { CostBreakdown } from '../interfaces';
/**
* Estimate the cost of generating audio descriptions for a video
* @param videoFilePath - Path to the input video file
* @param options - Optional configuration overrides
* @returns Cost estimation breakdown
*/
export declare function estimateCost(videoFilePath: string, options?: Partial<Config>): Promise<CostBreakdown>;