@plutotcool/vue-freecaster
Version:
Freecaster video player integration for vue
21 lines (20 loc) • 719 B
TypeScript
/**
* @module Plugin
*/
export interface FreecasterPluginOptions {
/**
* Load the freecaster player script if not already loaded. Can be set to
* true, a custom url, or false to disable loading the script.
* @default 'https://player.freecaster.com/freecaster/stable/fcplayer.js'
*/
script?: boolean | string;
/**
* Register the freecaster player component globally. Can be set to true,
* a custom component name, or false to disable registering the component.
* @default 'FreecasterPlayer'
*/
component?: boolean | string;
}
export declare const FreecasterPlugin: {
install(app: import('vue').App<any>, options?: FreecasterPluginOptions): Promise<void>;
};