Skip to main content

Interface: FilterFunction

jsonpath.functions.FilterFunction

A JSONPath filter function definition.

Implemented by

Properties

argTypes

argTypes: FunctionExpressionType[]

Argument types expected by the filter function.

Defined in

src/path/functions/function.ts:18


returnType

returnType: FunctionExpressionType

The type of the value returned by the filter function.

Defined in

src/path/functions/function.ts:23

Methods

call

call(...args): unknown

A function with unknown number and type of arguments.

Parameters

NameType
...argsunknown[]

Returns

unknown

Defined in

src/path/functions/function.ts:28