@ngx-gallery/core
Version:
Angular gallery directive that hooks the lightbox with the images automatically.
12 lines (11 loc) • 380 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
export declare class GalleryIframeComponent implements OnInit {
private _sanitizer;
iframeSrc: SafeResourceUrl;
src: string;
pauseVideo: boolean;
iframe: ElementRef;
constructor(_sanitizer: DomSanitizer);
ngOnInit(): void;
}