UNPKG

@n4it/crud-request

Version:

NestJs CRUD for RESTful APIs - request query builder

11 lines (10 loc) 229 B
import { ParamOptionType } from '../types'; export interface ParamsOptions { [key: string]: ParamOption; } export interface ParamOption { field?: string; type?: ParamOptionType; primary?: boolean; disabled?: boolean; }