@transcrobes/subs-convert
Version:
Convert subtitles from one format to another
9 lines • 396 B
TypeScript
/**
* WebVTT module exports
*/
import { parseWebVTT, ParserError } from "./parser";
import { compileWebVTT, CompilerError } from "./compiler";
import { segmentWebVTT } from "./segmenter";
import { hlsSegment, hlsSegmentPlaylist } from "./hls";
export { parseWebVTT, compileWebVTT, segmentWebVTT, hlsSegment, hlsSegmentPlaylist, ParserError, CompilerError, };
//# sourceMappingURL=index.d.ts.map