Skip to content

TWebapiList

TWebapiList object

TWebapiList is a generic object that represents a list of results taken from the API. It can be a list of search results, filters, products and more.

type TWebapiList<T> = {
    pages: number;
    page: number;
    count: number;
    list: T[];
};