Fix PreviewThumbnailsOptions type

According to the docs, the `src` should also accept an array of strings.
This commit is contained in:
Takeshi 2020-07-13 13:00:16 -06:00 committed by GitHub
parent 6cb822d56f
commit cbd4a7cef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
src/js/plyr.d.ts vendored
View File

@ -552,7 +552,7 @@ declare namespace Plyr {
interface PreviewThumbnailsOptions {
enabled?: boolean;
src?: string;
src?: string | string[];
}
interface SourceInfo {