json-p3
Version:
JSONPath, JSON Pointer and JSON Patch
11 lines (10 loc) • 802 B
TypeScript
export declare const version = "__VERSION__";
export * as jsonpath from "./path";
export { DEFAULT_ENVIRONMENT, FunctionExpressionType, JSONPathQuery, JSONPathEnvironment, JSONPathError, JSONPathIndexError, JSONPathLexerError, JSONPathNode, JSONPathNodeList, JSONPathSyntaxError, JSONPathTypeError, JSONPathRecursionLimitError, Token, TokenKind, Nothing, lazyQuery, query, compile, } from "./path";
export type { JSONPathEnvironmentOptions, FilterFunction } from "./path";
export * as jsonpointer from "./pointer";
export { JSONPointer, RelativeJSONPointer, resolve, UNDEFINED, } from "./pointer";
export * as jsonpatch from "./patch";
export { JSONPatch, JSONPatchError, JSONPatchTestFailure, apply, } from "./patch";
export type { OpObject } from "./patch";
export type { JSONValue } from "./types";