@pond-ts/process API Reference
    Preparing search index...

    Interface SlotEnvelope

    The slot form — [PND-PROCSLOT].

    nodes is keyed by names the caller owns and outputs by names it will read back, so both survive a param edit that moves every derived id. What a PlanBuilder emits.

    interface SlotEnvelope {
        as?: string;
        assemble?: boolean;
        from: string;
        nodes: Slots;
        onError?: ErrorPolicy;
        outputs?: Readonly<Record<string, Select>>;
    }

    Hierarchy

    • EnvelopeBase<string>
      • SlotEnvelope
    Index

    Properties

    as?: string
    assemble?: boolean

    See RunOptions.assemble. A wire consumer wants false.

    from: string
    nodes: Slots
    onError?: ErrorPolicy
    outputs?: Readonly<Record<string, Select>>