export interface BasePageable { /** * The maximum number of products to be returned by a single query. * * @example 10 */ limit?: number; /** * A boolean value representing if a list of products has additional results before the * current page or cursor. * * @example true */ hasPrevPage?: boolean; /** * A boolean value representing if a list of products has additional results beyond the * current page or cursor. * * @example true */ hasNextPage?: boolean; }