avatar.component.d.ts 755 B

12345678910111213
  1. import { OnInit } from '@angular/core';
  2. import { ComponentSize } from '../../../model/components/component-size.type';
  3. import * as i0 from "@angular/core";
  4. export declare class AvatarComponent implements OnInit {
  5. picture: string;
  6. title: string;
  7. size: ComponentSize;
  8. imageType: string;
  9. titleInitials: string;
  10. ngOnInit(): void;
  11. static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
  12. static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ct-avatar", never, { "picture": { "alias": "picture"; "required": false; }; "title": { "alias": "title"; "required": false; }; "size": { "alias": "size"; "required": false; }; "imageType": { "alias": "imageType"; "required": false; }; }, {}, never, never, true, never>;
  13. }