Type alias NavigationBreadcrumb

NavigationBreadcrumb: ImplementsCrumb<{
    class: "navigation";
    data?: {
        from?: string;
        to?: string;
    };
    level: "info";
    timestamp: number;
    type?: string;
}>

Type for navigation breadcrumbs.

Type declaration

  • class: "navigation"
  • Optional data?: {
        from?: string;
        to?: string;
    }
    • Optional from?: string

      The location being navigated from. In a web application this would typically be a URL.

    • Optional to?: string

      The location being navigated to. In a web application this would typically be a URL.

  • level: "info"
  • timestamp: number
  • Optional type?: string

Generated using TypeDoc