collectype / types/pipe / ParsedPipeStep
ParsedPipeStep =
object
Defined in: types/pipe.ts:10
Represents a parsed step in a pipe expression.
const step: ParsedPipeStep = { methodName: 'filter', args: [x => x > 0] };
methodName:
string
Defined in: types/pipe.ts:11
The method name to call.
args:
any[]
Defined in: types/pipe.ts:12
The arguments for the method.