fix(video-player): scalingMode is number

fixes #774
This commit is contained in:
Ibby Hadeed 2016-11-23 08:53:20 -05:00
parent 8439faf6b8
commit f07431a14c

View File

@ -13,7 +13,7 @@ export interface VideoOptions {
* There are to options for the scaling mode. SCALE_TO_FIT which is default and SCALE_TO_FIT_WITH_CROPPING.
* These strings are the only ones which can be passed as option.
*/
scalingMode?: string;
scalingMode?: number;
}
/**