UNPKG

subtitles-parser-vtt

Version:
15 lines (12 loc) 263 B
interface Subtitle { id: number; startTime: number; endTime: number; text: string; } export function fromVtt( data: string, timeFormat?: "ms" | "s", isYoutubeAutoTranscript?: boolean ): Subtitle[]; export function toVtt(data: Subtitle[]): string;