//#region src/lib/api.d.ts interface ApiRequestPagination { /** Count wanted in response, 0 to show all (15 by default) */ count?: number; /** Page number (1 by default) */ page?: number; /** Field to sort */ sort?: string; /** Order of sort (asc by default) */ order?: 'asc' | 'desc'; } type PrimitiveType = number | string | boolean; type ApiRequestFilters = Record; interface ApiRequestOptions { filters?: ApiRequestFilters; pagination?: ApiRequestPagination; } interface SdkPaginated { items: Item[]; total: number; count: number; page: number; } //#endregion export { SdkPaginated as n, ApiRequestOptions as t }; //# sourceMappingURL=api-Bux99RKM.d.ts.map