mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-03-28 17:42:55 +01:00
70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
/* 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_filename from "../lib/filename.js";
|
|
import type * as lib_flags from "../lib/flags.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/filename": typeof lib_filename;
|
|
"lib/flags": typeof lib_flags;
|
|
"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<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: {};
|