@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
27 lines (21 loc) • 473 B
TypeScript
declare module "@voltra/vue-player/props/wistiaConfig" {
import type { VueTypeShape } from "vue-types/dist/types";
export interface WistiaConfig {
wistia: {
/**
* @default {}
*/
options: object;
/**
* @default null
*/
playerId: string|null;
/**
* @default null
*/
customControls: unknown[]|null;
};
}
export const wistiaConfigPropsDefaults: WistiaConfig;
export const wistiaConfigProps: VueTypeShape<WistiaConfig>;
}