From 9cf60290d3a6d40adc6f41702e47cd894232e51c Mon Sep 17 00:00:00 2001 From: Benjamin Wallberg Date: Mon, 3 Apr 2023 16:29:10 +0200 Subject: [PATCH] fix: wrong MediaInfo.labels type definition (#4165) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 3450c3a4bb..ba9f5269ab 100644 --- a/index.d.ts +++ b/index.d.ts @@ -423,7 +423,7 @@ declare namespace dashjs { type: MediaType | null; streamInfo: StreamInfo | null; representationCount: number; - labels: string[]; + labels: { text: string, lang?: string }[]; lang: string | null; viewpoint: any | undefined | null; accessibility: any[] | null;