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

20 lines (17 loc) 388 B
import VueTypes from "vue-types"; /** * @type {MixcloudConfig} */ export const mixcloudConfigPropsDefaults = { options: { hide_cover: 1 } }; /** * @type {import("vue-types").VueTypeShape<MixcloudConfig>} */ export const mixcloudConfigProps = VueTypes.shape({ options: VueTypes.shape({ hide_cover: VueTypes.integer, }).loose, }).loose.def(() => mixcloudConfigPropsDefaults);