Merge pull request #1706 from sampotts/master

Merge back
This commit is contained in:
Sam Potts 2020-02-26 12:33:37 +11:00 committed by GitHub
commit 3c127afeb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -94,9 +94,8 @@ declare class Plyr {
/**
* Gets or sets the quality for the player. The setter accepts a value from the options specified in your config.
* Remarks: YouTube only. HTML5 will follow.
*/
quality: string;
quality: number;
/**
* Gets or sets the current loop state of the player.
@ -500,8 +499,8 @@ declare namespace Plyr {
}
interface QualityOptions {
default: string;
options: string[];
default: number;
options: number[];
}
interface LoopOptions {