export type SortDirection = 'ASC' | 'DESC'; export interface PaginationParams { limit: number; offset: number; } export interface SortParams { sortBy: T; sortDirection: SortDirection; } export interface QueryParams { pagination: PaginationParams; sort: SortParams; }