feat: filter json body response (#2404)

This commit is contained in:
Nivedin
2022-06-10 18:12:40 +05:30
committed by GitHub
parent 04a9c4dc52
commit 6b1ca1dce1
8 changed files with 174 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
import { JSONPathOptions } from "jsonpath-plus"
declare module "jsonpath-plus" {
export type JSONPathType = (options: JSONPathOptions) => unknown
export const JSONPath: JSONPathType
}