/** * Generated `api` utility. * * THIS CODE IS AUTOMATICALLY GENERATED. * * To regenerate, run `npx convex dev`. * @module */ import type * as audit from "../audit.js"; import type * as dispatch from "../dispatch.js"; import type * as mrtr from "../mrtr.js"; import type * as registry from "../registry.js"; import type * as sessions from "../sessions.js"; import type * as tasks from "../tasks.js"; import type { ApiFromModules, FilterApi, FunctionReference } from "convex/server"; declare const fullApi: ApiFromModules<{ audit: typeof audit; dispatch: typeof dispatch; mrtr: typeof mrtr; registry: typeof registry; sessions: typeof sessions; tasks: typeof tasks; }>; /** * 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: {}; export {}; //# sourceMappingURL=api.d.ts.map