react-native-theoplayer
Version:
A THEOplayer video component for react-native.
29 lines (27 loc) • 659 B
JavaScript
;
/**
* The text track style API.
*
* @category Media and Text Tracks
* @public
*/
/**
* The style of the edge, represented by a value from the following list:
* <br/> - `'none'`
* <br/> - `'dropshadow'`
* <br/> - `'raised'`
* <br/> - `'depressed'`
* <br/> - `'uniform'`
*
* @category Media and Text Tracks
* @public
*/
export let EdgeStyle = /*#__PURE__*/function (EdgeStyle) {
EdgeStyle["none"] = "none";
EdgeStyle["dropshadow"] = "dropshadow";
EdgeStyle["raised"] = "raised";
EdgeStyle["depressed"] = "depressed";
EdgeStyle["uniform"] = "uniform";
return EdgeStyle;
}({});
//# sourceMappingURL=TextTrackStyle.js.map