import { OnChanges, Renderer2, ElementRef } from '@angular/core'; export declare class AdminImageDirective implements OnChanges { private _renderer; private _ele; /** * @param {string} image * * source of the image; * - in the case of user (gr)avatar it's the e-mail address, * - in the case of project logo it's the image url */ image: string; /** * @param {string} type * * type of image; you can use it with * - project * - user */ type: string; /** * @ignore */ source: string; /** * @ignore */ onError: string; /** * @ignore */ constructor(_renderer: Renderer2, _ele: ElementRef); /** * @ignore */ ngOnChanges(): void; }