import type { BasePageable } from './base-pageable.model'; export interface OffsetPageable extends BasePageable { /** * The page number of the products if more products exist for an index than are * returned by a single query. * * @example 3 */ page: number; }