mirror of
https://github.com/elder-plinius/LEAKHUB.git
synced 2026-02-12 16:52:53 +00:00
64 lines
1.4 KiB
TypeScript
64 lines
1.4 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 crons from "../crons.js";
|
|
import type * as github from "../github.js";
|
|
import type * as http from "../http.js";
|
|
import type * as leaderboard from "../leaderboard.js";
|
|
import type * as leaks from "../leaks.js";
|
|
import type * as requests from "../requests.js";
|
|
import type * as users from "../users.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
declare const fullApi: ApiFromModules<{
|
|
auth: typeof auth;
|
|
crons: typeof crons;
|
|
github: typeof github;
|
|
http: typeof http;
|
|
leaderboard: typeof leaderboard;
|
|
leaks: typeof leaks;
|
|
requests: typeof requests;
|
|
users: typeof users;
|
|
}>;
|
|
|
|
/**
|
|
* 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: {};
|