UNPKG

@transcrobes/subs-convert

Version:

Convert subtitles from one format to another

10 lines 342 B
/** * See spec: https://www.w3.org/TR/webvtt1/#file-structure */ import { ParsedResult } from "../shared/types"; export declare class CompilerError extends Error { error?: Error; constructor(message: string, error?: Error); } export declare function compileWebVTT(input: ParsedResult): string; //# sourceMappingURL=compiler.d.ts.map