import { OnDestroy, OnInit } from '@angular/core'; import { SubjectsService } from '../../../../services/subjects.service'; import { Subscription } from 'rxjs'; import { ImageColumnTable } from './../../../../interfaces/columns/image'; import * as i0 from "@angular/core"; /** * Body option Image */ export declare class ImageComponent implements OnInit, OnDestroy { private subjectsService; /** * Actual Column */ column: ImageColumnTable; /** * Data row */ data: any; /** * Date today */ date: string; /** * Is visible modal */ isVisible: any; /** * Loading */ loading: boolean; /** * Subscriptor Get Image */ suscriptionImage: Subscription; /** * image error flag */ hasError: boolean; /** * subscriptor external component comunication */ suscriptionExternal: Subscription; /** * Constructor Generate request */ constructor(subjectsService: SubjectsService); /** * ngOnInit */ ngOnInit(): void; /** * function to load column image if fetch an httpSubscribe */ loadImage(): void; /** * ngOnDestroy */ ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }