Represents a generic breadcrumb value type.

interface BreadcrumbValue<T> {
    value: T;
    deselect(): void;
}

Type Parameters

  • T

Hierarchy (View Summary)

Methods

Properties

Methods

  • A function that when called dispatches actions to deselect a breadcrumb value.

    Returns void

Properties

value: T

The underlying value linked to this breadcrumb.