From f0633dba46288b65df62d057ae67a8a21ff296bc Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 21 Jun 2026 01:12:15 +0200 Subject: [PATCH] refactor: make SubtitleItem interface private --- static/player/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/player/types.ts b/static/player/types.ts index 5b6eabd3..bb697409 100644 --- a/static/player/types.ts +++ b/static/player/types.ts @@ -7,7 +7,7 @@ export interface ModeSource { } // subtitle track from backend -export interface SubtitleItem { +interface SubtitleItem { lang: string; token: string; }