UNPKG

@azure/cosmos

Version:
14 lines 359 B
import { Aggregator } from "./Aggregator"; /** @hidden */ export declare class SumAggregator implements Aggregator { sum: number; /** * Add the provided item to aggregation result. */ aggregate(other: number): void; /** * Get the aggregation result. */ getResult(): number; } //# sourceMappingURL=SumAggregator.d.ts.map