{"version":3,"file":"profile-menu.d.ts","sources":["profile-menu.d.ts"],"names":[],"mappings":"AAAA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { QueryList, OnInit, EventEmitter } from '@angular/core';\r\nimport { NgbModal } from '../../modal/modal.module';\r\nexport declare class CloProfileMenuItem {\r\n    /**\r\n     *  The time from the notification being created to now as a string (ex: '2 minutes ago')\r\n     */\r\n    label: string;\r\n    labelFont: any;\r\n}\r\nexport declare class CloProfileUser {\r\n    /**\r\n     *  The url for the user's avatar/profile image\r\n     */\r\n    avatarSrc: string;\r\n    /**\r\n     *  The name of the company\r\n     */\r\n    companyName: string;\r\n    /**\r\n     *  The user's title\r\n     */\r\n    title: string;\r\n    /**\r\n     *  The username\r\n     */\r\n    username: string;\r\n}\r\nexport declare class CloProfileMenu implements OnInit {\r\n    private modalService;\r\n    items: QueryList<CloProfileMenuItem>;\r\n    user: CloProfileUser;\r\n    profileItemClicked: EventEmitter<any>;\r\n    constructor(modalService: NgbModal);\r\n    open(content: any): void;\r\n    profileMenuItemsClick(item: any): void;\r\n    ngOnInit(): void;\r\n}\r\n"]}