From cbd4a7cef41aba1259acb9017e82be7b5ebbd90c Mon Sep 17 00:00:00 2001 From: Takeshi Date: Mon, 13 Jul 2020 13:00:16 -0600 Subject: [PATCH] Fix PreviewThumbnailsOptions type According to the docs, the `src` should also accept an array of strings. --- src/js/plyr.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/plyr.d.ts b/src/js/plyr.d.ts index cdd5cd4c..aca14d9a 100644 --- a/src/js/plyr.d.ts +++ b/src/js/plyr.d.ts @@ -552,7 +552,7 @@ declare namespace Plyr { interface PreviewThumbnailsOptions { enabled?: boolean; - src?: string; + src?: string | string[]; } interface SourceInfo {