/** * A structure that represents a breadcrumb item. */ export interface ICrumb { /** * Content to be displayed in the breadcrumb item. */ text: string; /** * Href for the breadcrumb item. */ href?: string; /** * Router options. Used in conjunction with `route` * See: https://angular.io/api/router/Router#navigate */ link?: string; /** * Query Parameters. Used in conjunction with `route` * See: https://angular.io/api/router/Router#navigate */ queryParams?: Object; }