import { OnInit, EventEmitter } from '@angular/core'; import { List, Link } from '../../models'; import { UglaService } from '../../ugla.service'; /** * List links component * * This component generates a selectable list of links, emitting the clicked link. * * @example * * */ export declare class ListLinksComponent implements OnInit { private ugla; /** * Receive a list of links */ list: List; /** * Text to attribute id */ id: string; /** * Set Orientation of the list: row, column * * Default: row */ orientation: string; /** * Emmiter for link clicked */ linkClicked: EventEmitter; /** * Classes of the component */ classes: string; /** * @ignore */ private theme; constructor(ugla: UglaService); ngOnInit(): void; /** * Function called on click of the link. Set the active link and emitts the object. * @param item Link element */ onClickLink(item: Link): boolean; }