json-p3
Version:
JSONPath, JSON Pointer and JSON Patch
8 lines (7 loc) • 323 B
TypeScript
import { FilterFunction, FunctionExpressionType } from "./function";
import { Nothing } from "../types";
export declare class Length implements FilterFunction {
readonly argTypes: FunctionExpressionType[];
readonly returnType = FunctionExpressionType.ValueType;
call(value: unknown): number | typeof Nothing;
}