Files
mnote/wolai-frontend/convex/_generated/api.d.ts
T
2026-01-17 10:12:53 +08:00

66 lines
1.5 KiB
TypeScript

/* eslint-disable */
/**
* Generated `api` utility.
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* To regenerate, run `npx convex dev`.
* @module
*/
import type * as _utils_time from "../_utils/time.js";
import type * as documents from "../documents.js";
import type * as jobs from "../jobs.js";
import type * as mediaAssets from "../mediaAssets.js";
import type * as mindmaps from "../mindmaps.js";
import type * as ping from "../ping.js";
import type * as recents from "../recents.js";
import type * as references from "../references.js";
import type * as workspaces from "../workspaces.js";
import type {
ApiFromModules,
FilterApi,
FunctionReference,
} from "convex/server";
declare const fullApi: ApiFromModules<{
"_utils/time": typeof _utils_time;
documents: typeof documents;
jobs: typeof jobs;
mediaAssets: typeof mediaAssets;
mindmaps: typeof mindmaps;
ping: typeof ping;
recents: typeof recents;
references: typeof references;
workspaces: typeof workspaces;
}>;
/**
* 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<any, "public">
>;
/**
* 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<any, "internal">
>;
export declare const components: {};