UNPKG

@calf/serializable

Version:

Serializable module of Calf framework.

11 lines (10 loc) 236 B
import { IPopulate } from "./populate.interface"; export interface IQuery { term?: string; filter?: any; limit?: number; skip?: number; select?: string[]; sort?: string[]; populate?: IPopulate[]; }