@ngx-gallery/core
Version:
Angular gallery directive that hooks the lightbox with the images automatically.
22 lines (21 loc) • 609 B
TypeScript
import { GalleryItem } from '../../models/gallery.model';
export declare class ImageItem implements GalleryItem {
readonly type: string;
readonly data: any;
constructor(data: any);
}
export declare class VideoItem implements GalleryItem {
readonly type: string;
readonly data: any;
constructor(data: any);
}
export declare class IframeItem implements GalleryItem {
readonly type: string;
readonly data: any;
constructor(data: any);
}
export declare class YoutubeItem implements GalleryItem {
readonly type: string;
readonly data: any;
constructor(data: any);
}