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

    Type Alias FusedPartitionedRollingSchema<S, ByCol, FM>

    FusedPartitionedRollingSchema: readonly [
        ColumnDef<"time", "time">,
        ColumnDef<ByCol, FromColumnKind<S, ByCol> & string> & { required: false },
        ...FusedRollingColumns<S, FM>[],
    ]

    Output schema for the partitioned variant — partitionBy('host').rolling(fusedMapping, { trigger }). Auto-injects the partition column once at the front of the merged output, never per-window. Matches the existing LivePartitionedSyncRolling schema shape.

    Type Parameters