/** * @category Utils */ interface PaginatedResponse { previous: (() => Promise>) | null; next: (() => Promise>) | null; items: IsArray extends true ? Array : T; partial: boolean; total?: number; } export type { PaginatedResponse, };