jsonpath-plus.d.ts 189 B

123456
  1. import { JSONPathOptions } from "jsonpath-plus"
  2. declare module "jsonpath-plus" {
  3. export type JSONPathType = (options: JSONPathOptions) => unknown
  4. export const JSONPath: JSONPathType
  5. }