Interface DrupalSearchApiFacet

interface DrupalSearchApiFacet {
    id: string;
    label?: string;
    path?: string;
    terms?: {
        url: string;
        values: { active?: boolean; count?: number; label: string; value: string };
    }[];
}

Properties

Properties

id: string
label?: string
path?: string
terms?: {
    url: string;
    values: { active?: boolean; count?: number; label: string; value: string };
}[]