aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2020-02-26 12:33:37 +1100
committerGitHub <noreply@github.com>2020-02-26 12:33:37 +1100
commit3c127afeb9e0059d1352ecb5b790633177a70cc4 (patch)
treebe717c5fb5723870af02032a866c6612771c66ef /src
parent8a0086397f5eceb49df0ca080cda04bf70cc715a (diff)
parent84eef1d7475a07146b0f8c1873e74c801a2e0653 (diff)
downloadplyr-3c127afeb9e0059d1352ecb5b790633177a70cc4.tar.lz
plyr-3c127afeb9e0059d1352ecb5b790633177a70cc4.tar.xz
plyr-3c127afeb9e0059d1352ecb5b790633177a70cc4.zip
Merge pull request #1706 from sampotts/master
Merge back
Diffstat (limited to 'src')
-rw-r--r--src/js/plyr.d.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/js/plyr.d.ts b/src/js/plyr.d.ts
index 1ff7d51f..3071f2ec 100644
--- a/src/js/plyr.d.ts
+++ b/src/js/plyr.d.ts
@@ -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 {