@ngx-gallery/core
Version:
Angular gallery directive that hooks the lightbox with the images automatically.
18 lines (17 loc) • 449 B
TypeScript
import { OnInit, ElementRef, EventEmitter } from '@angular/core';
export declare class GalleryVideoComponent implements OnInit {
videoSources: {
url: string;
type?: string;
}[];
src: string | {
url: string;
type?: string;
}[];
poster: string;
pauseVideo: boolean;
/** Stream that emits when an error occurs */
error: EventEmitter<Error>;
video: ElementRef;
ngOnInit(): void;
}