Installation
npm install --save @types/videojs-playlist-ui
Summary
This package contains type definitions for videojs-playlist-ui (https://github.com/brightcove/videojs-playlist-ui).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/videojs-playlist-ui.
index.d.ts
// eslint-disable-next-line @definitelytyped/no-import-default-of-export-equals
import videojs from "video.js";
export as namespace videojsPlaylistUi;
declare module "video.js" {
interface VideoJsPlayer {
playlistUi: typeof videojsPlaylistUi;
}
}
declare namespace videojsPlaylistUi {
interface Options extends videojs.ComponentOptions {
/**
* @default 'vjs-playlist'
*/
className?: string | undefined;
/**
* @default false
*/
playOnSelect?: boolean | undefined;
}
}
declare const videojsPlaylistUi: {
VERSION: "4.0.0";
(this: videojs.Player, options?: videojsPlaylistUi.Options): void;
};
export = videojsPlaylistUi;
Additional Details
- Last updated: Tue, 07 Nov 2023 15:11:36 GMT
- Dependencies: @types/video.js
Credits
These definitions were written by Piotr Błażejewicz.