Added missing PlayerOptions option definitions

See http://docs.videojs.com/tutorial-options.html for full list. There are some that I have not added.
This commit is contained in:
Sean Bennett
2017-11-01 10:34:42 -05:00
committed by GitHub
parent 17f38a9945
commit 2fe89a3d72
+8
View File
@@ -15,15 +15,23 @@ export as namespace videojs;
declare namespace videojs {
interface PlayerOptions {
techOrder?: string[];
sourceOrder?: boolean;
html5?: any;
width?: number;
height?: number;
defaultVolume?: number;
children?: string[];
loop?: boolean;
muted?: boolean;
controls?: boolean;
src?: string;
autoplay?: boolean;
preload?: string;
sources?: Source[];
apsectRatio?: string;
fluid?: boolean;
language?: string;
notSupportedMessage?: string;
}
interface Source {