@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 (15 loc) • 378 B
TypeScript
declare module "@voltra/vue-player/props/twitchConfig" {
import type { VueTypeShape } from "vue-types/dist/types";
export interface TwitchConfig {
/**
* @default {}
*/
options: object;
/**
* @default null
*/
playerId: string|null;
}
export const twitchConfigPropsDefaults: TwitchConfig;
export const twitchConfigProps: VueTypeShape<TwitchConfig>;
}