UNPKG

@strapi/types

Version:

Shared typescript types for Strapi internal use

11 lines 284 B
import type { XOR } from '../../../utils'; export type PageNotation = { page?: number; pageSize?: number; }; export type OffsetNotation = { start?: number; limit?: number; }; export type Any = XOR<PageNotation, OffsetNotation>; //# sourceMappingURL=pagination.d.ts.map