@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias EntitySelectorPage<T>

    One page returned by a combobox's fetch action: the slice, whether more pages exist, and the full match count (so the UI shows an exact "N", not "N+").

    type EntitySelectorPage<T> = {
        hasNext: boolean;
        items: T[];
        total: number;
    }

    Type Parameters

    • T
    Index
    hasNext: boolean
    items: T[]
    total: number