Files
DefinitelyTyped/jmespath/index.d.ts
Jeffery Grajkowski f4e385218b Added JMESPath 0.15.0 (#14685)
* Added JMESPath 0.15.0

* Added tslint to jmespath

* Fix linting issue.
2017-03-10 16:13:26 -08:00

14 lines
539 B
TypeScript

// Type definitions for jmespath 0.15
// Project: https://github.com/jmespath/jmespath.js
// Definitions by: Jeffery Grajkowski <https://github.com/pushplay>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* 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;