UNPKG

jpa-specification-body-maker

Version:

Create filter objects for use with JPA specifications

9 lines (8 loc) 221 B
import { JpaFilter } from './jpa-filter'; import { JpaSort } from './jpa-sort'; export interface SearchRequest { filters: JpaFilter[]; sorts: JpaSort[]; page: number | null; size: number | null; }