pond-ts API Reference (core)
    Preparing search index...

    Type Alias ArrayAggregateKind<Op, ExplicitKind>

    ArrayAggregateKind: ExplicitKind extends ScalarKind
        ? ExplicitKind
        : Op extends NumericAggregateFunction
            ? "number"
            : Op extends "unique" | `top${number}` ? "array" : "string"

    Output column kind for arrayAggregate(col, reducer, { kind? }). Numeric reducers → 'number', 'unique''array', 'first'/'last'/ 'keep' and custom functions → 'string' unless the caller passes an explicit kind.

    Type Parameters