/* eslint-disable */ /** * Generated `api` utility. * * THIS CODE IS AUTOMATICALLY GENERATED. * * To regenerate, run `npx convex dev`. * @module */ import type * as actions from "../actions.js"; import type * as admin from "../admin.js"; import type * as auth from "../auth.js"; import type * as builds from "../builds.js"; import type * as helpers from "../helpers.js"; import type * as http from "../http.js"; import type * as lib_r2 from "../lib/r2.js"; import type * as plugins from "../plugins.js"; import type * as profiles from "../profiles.js"; import type { ApiFromModules, FilterApi, FunctionReference, } from "convex/server"; declare const fullApi: ApiFromModules<{ actions: typeof actions; admin: typeof admin; auth: typeof auth; builds: typeof builds; helpers: typeof helpers; http: typeof http; "lib/r2": typeof lib_r2; plugins: typeof plugins; profiles: typeof profiles; }>; /** * 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: {};