UNPKG

@types/jmespath

Version:
9 lines (8 loc) 313 B
/** * Take a JSON document and transform it into another JSON document * through a JMESPath expression. See: http://jmespath.org/ * @param jsonDoc the document to transform * @param query a JMESPath expression * @return the transformed document */ export function search(jsonDoc: any, query: string): any;