API response from the thing suggestion endpoint.

interface SuggestResponse {
    results?: Record<
        string,
        { _id: string; description?: MLString; text: string; urlID: string }[],
    >;
}

Properties

Properties

results?: Record<
    string,
    { _id: string; description?: MLString; text: string; urlID: string }[],
>