/* eslint-disable */ /** * Generated `api` utility. * * THIS CODE IS AUTOMATICALLY GENERATED. * * To regenerate, run `npx convex dev`. * @module */ import type * as auth from "../auth.js"; import type * as authz from "../authz.js"; import type * as conversationMessages from "../conversationMessages.js"; import type * as fluePersistence from "../fluePersistence.js"; import type * as healthCheck from "../healthCheck.js"; import type * as http from "../http.js"; import type * as organizations from "../organizations.js"; import type * as privateData from "../privateData.js"; import type * as projects from "../projects.js"; import type * as publicGit from "../publicGit.js"; import type * as signalRouting from "../signalRouting.js"; import type * as works from "../works.js"; import type { ApiFromModules, FilterApi, FunctionReference, } from "convex/server"; declare const fullApi: ApiFromModules<{ auth: typeof auth; authz: typeof authz; conversationMessages: typeof conversationMessages; fluePersistence: typeof fluePersistence; healthCheck: typeof healthCheck; http: typeof http; organizations: typeof organizations; privateData: typeof privateData; projects: typeof projects; publicGit: typeof publicGit; signalRouting: typeof signalRouting; works: typeof works; }>; /** * A utility for referencing Convex functions in your app's public API. * * Usage: * ```js * const myFunctionReference = api.myModule.myFunction; * ``` */ export declare const api: FilterApi< typeof fullApi, FunctionReference >; /** * A utility for referencing Convex functions in your app's internal API. * * Usage: * ```js * const myFunctionReference = internal.myModule.myFunction; * ``` */ export declare const internal: FilterApi< typeof fullApi, FunctionReference >; export declare const components: { betterAuth: import("@convex-dev/better-auth/_generated/component.js").ComponentApi<"betterAuth">; };