62 lines
1.5 KiB
TypeScript
62 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 auth from "../auth.js";
|
|
import type * as custom_auth_index from "../custom/auth/index.js";
|
|
import type * as custom_auth_providers_password from "../custom/auth/providers/password.js";
|
|
import type * as custom_auth_providers_usesend from "../custom/auth/providers/usesend.js";
|
|
import type * as http from "../http.js";
|
|
import type * as questions from "../questions.js";
|
|
import type * as utils from "../utils.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
declare const fullApi: ApiFromModules<{
|
|
auth: typeof auth;
|
|
"custom/auth/index": typeof custom_auth_index;
|
|
"custom/auth/providers/password": typeof custom_auth_providers_password;
|
|
"custom/auth/providers/usesend": typeof custom_auth_providers_usesend;
|
|
http: typeof http;
|
|
questions: typeof questions;
|
|
utils: typeof utils;
|
|
}>;
|
|
|
|
/**
|
|
* 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: {};
|