@ks89/angular-modal-gallery
Version:
Image gallery for Angular
10 lines (9 loc) • 345 B
TypeScript
import { Image, ModalImage, PlainImage } from './image.class';
/**
* Internal representation of an image adding other fields
* to the public `Image` class.
*/
export declare class InternalLibImage extends Image {
previouslyLoaded: boolean;
constructor(id: number, modal: ModalImage, plain?: PlainImage, previouslyLoaded?: boolean);
}