{"version":3,"file":"notifications.d.ts","sources":["notifications.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;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { QueryList, OnInit } from '@angular/core';\r\nimport { NgbModal } from '../../modal/modal.module';\r\nexport declare class CloNotificationItem {\r\n    /**\r\n     *  If 'true' will not have a a red dot next to notification\r\n     */\r\n    read: boolean;\r\n    /**\r\n     *  The notification type\r\n     *\r\n     *  Available types include ['transit']\r\n     */\r\n    type: string;\r\n    /**\r\n     *  An image url to display next to the notification\r\n     *\r\n     */\r\n    previewImage: string;\r\n    /**\r\n     *  The notification header\r\n     */\r\n    headerText: string;\r\n    /**\r\n     *  The notification message\r\n     */\r\n    message: string;\r\n    /**\r\n     * Details about the notification (cart information, etc.)\r\n     */\r\n    details: string;\r\n    /**\r\n     *  The time from the notification being created to now as a string (ex: '2 minutes ago')\r\n     */\r\n    time: string;\r\n}\r\nexport declare class CloNotifications implements OnInit {\r\n    private modalService;\r\n    items: QueryList<CloNotificationItem>;\r\n    unread: boolean;\r\n    constructor(modalService: NgbModal);\r\n    open(content: any): void;\r\n    ngOnInit(): void;\r\n}\r\n"]}