@sugo/mongodb-queryparams
Version:
Unique Queryparams sintax (Inspired in Elastic Search) that creates queries for MongoDB
28 lines (27 loc) • 583 B
TypeScript
export declare const Lexer: undefined;
export declare const ParserRules: ({
name: string;
symbols: string[];
postprocess?: undefined;
} | {
name: string;
symbols: RegExp[];
postprocess?: undefined;
} | {
name: string;
symbols: (string | RegExp)[];
postprocess: (d: any) => any;
} | {
name: string;
symbols: {
literal: string;
}[];
postprocess?: undefined;
} | {
name: string;
symbols: (string | {
literal: string;
})[];
postprocess: (d: any) => any;
})[];
export declare const ParserStart = "SORT";