@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
14 lines • 367 B
TypeScript
import type { Aggregator } from "./Aggregator.js";
/** @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