UNPKG

@teamhive/nestjs-common

Version:

Our common decorators, services, etc for NestJS projects

13 lines (12 loc) 267 B
import { SortDirection } from '../types'; export interface PaginationOptions { page?: number; size?: number; shift?: number; sortByModel?: any; sortBy?: string; sortDir?: SortDirection; filter?: any; search?: string; user?: any; }