1
0
Fork 0
salty-dog/vendor/jsonpath-plus/index.d.ts

8 lines
168 B
TypeScript

declare module 'jsonpath-plus' {
export interface JSONPathOptions {
json: any;
path: string;
}
export function JSONPath(options: JSONPathOptions): any;
}