ngx-video-list-player
Version:
A simple Angular video player with video list. No dependecies. Only custom controls, css, ts and svgs. Youtube support
13 lines (12 loc) • 539 B
TypeScript
export declare class VideoEventTypes {
static readonly TimeUpdate = "timeupdate";
static readonly LoadedMetadata = "loadedmetadata";
static readonly FullScreenChange = "fullscreenchange";
static readonly Ended = "ended";
static readonly LeavePictureInPicture = "leavepictureinpicture";
static readonly EnterPictureInPicture = "enterpictureinpicture";
static readonly Pause = "pause";
static readonly Play = "play";
static readonly CanPlay = "canplay";
static readonly Error = "error";
}