UNPKG

@astronautlabs/jsonpath

Version:

Query JavaScript objects with JSONPath expressions. Robust / safe JSONPath engine for Node.js.

12 lines (11 loc) 229 B
/** * Defines the token types of JSONPath by regular expression. * @internal * @hidden */ export declare const TOKENS: { identifier: string; integer: string; qq_string: string; q_string: string; };