2026-01-22 18:53:20 +08:00
|
|
|
/* eslint-disable */
|
2026-01-17 10:12:53 +08:00
|
|
|
/**
|
|
|
|
|
* Generated `api` utility.
|
|
|
|
|
*
|
|
|
|
|
* THIS CODE IS AUTOMATICALLY GENERATED.
|
|
|
|
|
*
|
|
|
|
|
* To regenerate, run `npx convex dev`.
|
|
|
|
|
* @module
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { anyApi, componentsGeneric } from "convex/server";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A utility for referencing Convex functions in your app's API.
|
|
|
|
|
*
|
|
|
|
|
* Usage:
|
|
|
|
|
* ```js
|
|
|
|
|
* const myFunctionReference = api.myModule.myFunction;
|
|
|
|
|
* ```
|
|
|
|
|
*/
|
|
|
|
|
export const api = anyApi;
|
|
|
|
|
export const internal = anyApi;
|
|
|
|
|
export const components = componentsGeneric();
|