From 2fe89a3d723382b3c58b55b9feee563bb995b92c Mon Sep 17 00:00:00 2001 From: Sean Bennett Date: Wed, 1 Nov 2017 10:34:42 -0500 Subject: [PATCH] Added missing PlayerOptions option definitions See http://docs.videojs.com/tutorial-options.html for full list. There are some that I have not added. --- types/video.js/index.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/types/video.js/index.d.ts b/types/video.js/index.d.ts index c6df37371c..d2dd9896fd 100644 --- a/types/video.js/index.d.ts +++ b/types/video.js/index.d.ts @@ -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 {