UNPKG

@voltra/vue-player

Version:

A Vue port of react-player: components for playing a variety of URLs including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia, DailyMotion

22 lines (19 loc) 476 B
import VueTypes from "vue-types"; /** * @type {FacebookConfig} */ export const facebookConfigPropsDefaults = { appId: '1309697205772819', version: 'v3.3', playerId: null, attributes: {} }; /** * @type {import("vue-types").VueTypeShape<FacebookConfig>} */ export const facebookConfigProps = VueTypes.shape({ appId: VueTypes.string, version: VueTypes.string, playerId: VueTypes.string, attributes: VueTypes.object, }).loose.def(() => facebookConfigPropsDefaults);