Member Junction
    Preparing search index...

    A pure operator — value in, value out. May throw (executor catches and reports the stage).

    interface PipelineOperator {
        argsHint: string;
        description: string;
        name: string;
        apply(input: PipeValue, args: unknown): PipeValue;
    }
    Index

    Properties

    Methods

    Properties

    argsHint: string

    JSON-schema-ish arg description for the tool docs.

    description: string
    name: string

    Methods