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

    Interface Spec

    One node in a plan: an op, its params, and where its inputs come from.

    interface Spec {
        inputs: readonly Input[];
        op: string;
        params?: Readonly<Record<string, ParamValue>>;
    }
    Index

    Properties

    Properties

    inputs: readonly Input[]

    A raw source column name, or a nested spec. Plural from the start.

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