@ngx-gallery/core
Version:
Angular gallery directive that hooks the lightbox with the images automatically.
14 lines (13 loc) • 495 B
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
import { GalleryState } from '../models/gallery.model';
import { GalleryConfig } from '../models/config.model';
export declare class GalleryNavComponent implements OnInit {
private _sanitizer;
navIcon: SafeHtml;
state: GalleryState;
config: GalleryConfig;
action: EventEmitter<string>;
constructor(_sanitizer: DomSanitizer);
ngOnInit(): void;
}