Fix import statement for VTTCue type in Transcript.svelte

This commit is contained in:
Ward
2025-11-25 03:32:41 +13:00
committed by GitHub
parent f64d27ad2d
commit 0811724894
@@ -1,7 +1,7 @@
<script lang="ts">
import { videoLength } from '$lib/numbers';
import Fuse from 'fuse.js';
import { VTTCue, parseText, type ParsedCaptionsResult } from 'media-captions';
import { type VTTCue, parseText, type ParsedCaptionsResult } from 'media-captions';
import { _ } from '$lib/i18n';
import { get } from 'svelte/store';
import type { VideoPlay } from '../api/model';