8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
|
declare module 'jsonpath-plus' {
|
||
|
export interface JSONPathOptions {
|
||
|
json: any;
|
||
|
path: string;
|
||
|
}
|
||
|
|
||
|
export function JSONPath(options: JSONPathOptions): any;
|
||
|
}
|