Interface SearchItem<T>

interface SearchItem<T> {
    fields: SearchItemField<T>[];
    key: string;
    links?: Record<string, SearchItemLink>;
    name: string;
    page?: RouterLink;
    picturePath?: string;
    secondaryText?: string;
    tag: string;
    type: string;
}

Type Parameters

Hierarchy (view full)

Properties

fields: SearchItemField<T>[]
key: string
links?: Record<string, SearchItemLink>
name: string
page?: RouterLink
picturePath?: string
secondaryText?: string
tag: string
type: string