UNPKG
@ihelpee/crud-request
Version:
latest (2.0.8)
2.0.8
2.0.5
2.0.4
2.0.3
NestJs CRUD for RESTful APIs - request query builder
ihelpee/nestjs-crud
@ihelpee/crud-request
/
lib
/
interfaces
/
params-options.interface.d.ts
11 lines
(10 loc)
•
239 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
ParamOptionType
}
from
'../types'
;
export
interface
ParamsOptions
{ [
key
:
string
]:
ParamOption
; }
export
interface
ParamOption
{
field
?:
string
;
type
?:
ParamOptionType
;
primary
?:
boolean
;
disabled
?:
boolean
; }