Interface IWeightedSumBuilder

interface IWeightedSumBuilder {
    columns: string[];
    label?: string;
    type: "weightedSum";
    weights: number[];
}

Properties

columns: string[]
label?: string
type: "weightedSum"
weights: number[]