UNPKG

json-p3

Version:

JSONPath, JSON Pointer and JSON Patch

8 lines (7 loc) 322 B
import { JSONPathNodeList } from "../node"; import { FilterFunction, FunctionExpressionType } from "./function"; export declare class Count implements FilterFunction { readonly argTypes: FunctionExpressionType[]; readonly returnType = FunctionExpressionType.ValueType; call(nodes: JSONPathNodeList): number; }