UNPKG

@ihelpee/crud-request

Version:

NestJs CRUD for RESTful APIs - request query builder

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; }