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

    Interface SlotDef

    One node in a slot graph. in names source columns or other slots.

    interface SlotDef {
        in: readonly string[];
        op: string;
        params?: Readonly<Record<string, ParamValue>>;
    }
    Index

    Properties

    Properties

    in: readonly string[]

    Inputs, in the op's declared order. Each entry is a source column name or another slot's name — not an inline spec. Being unable to nest here is the point: nesting is what slots replace.

    op: string
    params?: Readonly<Record<string, ParamValue>>