/** * Generated `api` utility. * * THIS CODE IS AUTOMATICALLY GENERATED. * * To regenerate, run `npx convex dev`. * @module */ import type * as chunks from "../chunks.js"; import type * as embeddings_importance from "../embeddings/importance.js"; import type * as embeddings_index from "../embeddings/index.js"; import type * as embeddings_tables from "../embeddings/tables.js"; import type * as entries from "../entries.js"; import type * as filters from "../filters.js"; import type * as helpers from "../helpers.js"; import type * as namespaces from "../namespaces.js"; import type * as search from "../search.js"; import type { ApiFromModules, FilterApi, FunctionReference } from "convex/server"; declare const fullApi: ApiFromModules<{ chunks: typeof chunks; "embeddings/importance": typeof embeddings_importance; "embeddings/index": typeof embeddings_index; "embeddings/tables": typeof embeddings_tables; entries: typeof entries; filters: typeof filters; helpers: typeof helpers; namespaces: typeof namespaces; search: typeof search; }>; /** * A utility for referencing Convex functions in your app's public API. * * Usage: * ```js * const myFunctionReference = api.myModule.myFunction; * ``` */ export declare const api: FilterApi>; /** * A utility for referencing Convex functions in your app's internal API. * * Usage: * ```js * const myFunctionReference = internal.myModule.myFunction; * ``` */ export declare const internal: FilterApi>; export declare const components: { workpool: import("@convex-dev/workpool/_generated/component.js").ComponentApi<"workpool">; }; export {}; //# sourceMappingURL=api.d.ts.map