Interface IReduceBuilder

interface IReduceBuilder {
    columns: string[];
    label?: string;
    type: "max" | "min" | "median" | "mean";
}

Properties

Properties

columns: string[]
label?: string
type: "max" | "min" | "median" | "mean"