{"version":3,"file":"mobile-nav.d.ts","sources":["mobile-nav.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","sourcesContent":["import { EventEmitter, QueryList } from '@angular/core';\r\nexport declare class MobileNavItem {\r\n    title: string;\r\n    routerLink: string;\r\n    onClick: EventEmitter<any>;\r\n}\r\n/**\r\n * The Mobile Navigation [copy].\r\n */\r\nexport declare class MobileNavigationMenu {\r\n    /**\r\n     * type of nav: `back`, `close`\r\n     */\r\n    iconImageType: string;\r\n    /**\r\n     * The router link associated with the icon in the nav\r\n     */\r\n    navigationLink: string;\r\n    /**\r\n     * The heading in the nav\r\n     */\r\n    heading: string;\r\n    /**\r\n     * The sub heading\r\n     */\r\n    subHeading: string;\r\n    onClick: EventEmitter<any>;\r\n    kebabItems: QueryList<MobileNavItem>;\r\n    imageTypes: {\r\n        back: string;\r\n        close: string;\r\n    };\r\n    image: string;\r\n    constructor();\r\n    emitClickEvent($event: any): void;\r\n}\r\n"]}