From 32bcb1a188a0cf15c92e2717e7d7ad8fb3b3fc3b 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 5b6eabd..bb69740 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; }