UNPKG

stagify

Version:

mongoose aggregate pipeline parser

13 lines (12 loc) 269 B
interface ISort { [key: string]: number; } export interface IStage { $match?: object; $project?: object; $sort?: ISort; $skip?: number; $limit?: number; } declare const _default: (query: string) => IStage[]; export default _default;