cfc-ds
Version:
Design System do Conselho Federal de Contabilidade baseado no govbr-ds
21 lines (20 loc) • 981 B
TypeScript
import { AvatarDensity } from '../../enums/avatar-density.enum';
import { AvatarType } from '../../enums/avatar-type.enum';
import * as i0 from "@angular/core";
export interface ListItems {
name: string;
url: string;
}
export declare class AvatarComponent {
type: AvatarType;
name: string;
density: AvatarDensity;
imageUrl?: string;
listItems: ListItems[];
avatarTypes: typeof AvatarType;
avatarDensities: typeof AvatarDensity;
openDropdown: boolean;
toggleDropdown(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "cfc-avatar", never, { "type": { "alias": "type"; "required": false; }; "name": { "alias": "name"; "required": false; }; "density": { "alias": "density"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; "listItems": { "alias": "listItems"; "required": false; }; }, {}, never, never, false, never>;
}