UNPKG

ncrudify

Version:

Configurable CRUD module for NestJS and Mongoose.

12 lines (11 loc) 340 B
export declare class QueryParser { static operatorsMap: Record<string, string>; static parse(queryParams: Record<string, unknown>): { filters: Record<string, any>; populate: any[]; sort: Record<string, 1 | -1>; skip: number; limit: number; }; static castValue(value: unknown): any; }