Files
klz-cables.com/.pnpm-store/v10/files/16/ca5b7a13624b0bcfba3e3c9031b349d22edfa70d183b7df6e6a77df3b8cde493ba0ee782d33085b4b6a951e779940bf4ee145e0c5d43f52c5a424f5efda29e
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

17 lines
827 B
Plaintext

import { AllCollections } from "../../../types/schema.js";
import { AggregationOptions, AggregationOutput } from "../../../types/aggregate.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/read/aggregate.d.ts
/**
* Aggregate allow you to perform calculations on a set of values, returning a single result.
* @param collection The collection to aggregate
* @param options The aggregation options
* @returns Aggregated data
* @throws Will throw if collection is empty
*/
declare const aggregate: <Schema, Collection extends AllCollections<Schema>, Options extends AggregationOptions<Schema, Collection>>(collection: Collection, options: Options) => RestCommand<AggregationOutput<Schema, Collection, Options>, Schema>;
//#endregion
export { aggregate };
//# sourceMappingURL=aggregate.d.ts.map