UNPKG

@coreui/angular

Version:

CoreUI Components Library for Angular

13 lines (12 loc) 346 B
import { INavAttributes, INavLinkProps } from '../../coreui.types'; interface IBreadcrumbItem { label: string; url?: string | any[]; attributes?: INavAttributes; linkProps?: INavLinkProps; class?: string; queryParams?: { [key: string]: any; }; } export type { INavAttributes, INavLinkProps, IBreadcrumbItem };