UNPKG

@jmespath-community/jmespath

Version:

Typescript implementation of the JMESPath Community specification

9 lines (8 loc) 265 B
import { JSONObject, JSONValue } from './JSON.type'; export declare class ScopeChain { private inner?; private data; get currentScopeData(): JSONObject; withScope(data: JSONObject): ScopeChain; getValue(identifier: string): JSONValue; }