feat: add type field to ModeSource and pass to loadVideoSource

This commit is contained in:
2026-06-14 21:37:49 +02:00
parent ef36578c4b
commit c891382efb
6 changed files with 14 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
// stream source for a single mode (sub/dub)
export interface ModeSource {
token: string;
type?: string;
subtitles: SubtitleItem[];
qualities?: string[];
}