UNPKG
jpa-specification-body-maker
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Create filter objects for use with JPA specifications
jpa-specification-body-maker
/
lib
/
search-request.d.ts
9 lines
(8 loc)
•
221 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
JpaFilter
}
from
'./jpa-filter'
;
import
{
JpaSort
}
from
'./jpa-sort'
;
export
interface
SearchRequest
{
filters
:
JpaFilter
[];
sorts
:
JpaSort
[];
page
:
number
|
null
;
size
:
number
|
null
; }