import type { WeightingFunction } from "./WeightingFunction"; /** * Weighting function factory interface. */ export interface WeightingFunctionFactory { /** * Creates weighting function. * * @param args */ create(...args: FactoryArgs): WeightingFunction; }