UNPKG

@pelotech/nestjsx-crud-request

Version:

NestJS CRUD for RESTful APIs - request query builder (temporary patch)

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