UNPKG

moh-common-lib

Version:

A library of Angular components, services, and styles for B.C. Government Ministry of Health (MoH).

17 lines (16 loc) 617 B
import { OnInit, EventEmitter, ViewContainerRef } from '@angular/core'; import { ModalDirective } from 'ngx-bootstrap/modal'; import { CommonImage } from '../../models/images.model'; export declare class ThumbnailComponent implements OnInit { imageObject: CommonImage; reviewMode: boolean; deleteImage: EventEmitter<CommonImage>; fullSizeViewModal: ModalDirective; private viewContainerRef; constructor(viewContainerRef: ViewContainerRef); scaledWidth: number; ngOnInit(): void; delete(evt: any): void; showFullSizeView(): void; hideFullSizeView(): void; }