UNPKG

@calf/common

Version:
11 lines (10 loc) 240 B
import { IPopulate } from "./populate.interface"; /** * Get query * @description Interface for Get query */ export interface IGetQuery<TCustom = any> { select?: string[]; populate?: IPopulate[]; custom?: TCustom; }