import type { Paginated, PaginationOptions } from '@feathersjs/feathers'; export type PaginatedOrArray = P extends { paginate: false; } ? R[] : P extends { paginate: PaginationOptions; } ? Paginated : (Paginated | R[]);