4.0.3 • Published 6 months ago

@types/videojs-playlist-ui v4.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for videojs-playlist-ui 4.0
// Project: https://github.com/brightcove/videojs-playlist-ui
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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: Thu, 10 Feb 2022 18:31:33 GMT
  • Dependencies: @types/video.js
  • Global values: videojsPlaylistUi

Credits

These definitions were written by Piotr Błażejewicz.

4.0.1

8 months ago

4.0.3

6 months ago

4.0.2

7 months ago

4.0.0

2 years ago