@convex-dev/aggregate
Version:
Convex component to calculate counts and sums of values for efficient aggregation.
18 lines (12 loc) • 526 B
text/typescript
/// <reference types="vite/client" />
import { test } from "vitest";
export const modules = import.meta.glob("./**/*.*s");
export { componentSchema };
export const componentModules = import.meta.glob("../component/**/*.ts");
import type { ComponentApi } from "../component/_generated/component.js";
import { componentsGeneric } from "convex/server";
import componentSchema from "../component/schema.js";
export const components = componentsGeneric() as unknown as {
aggregate: ComponentApi;
};
test("setup", () => {});