Files
finanzen/convex/_generated/api.d.ts
2026-06-15 11:33:23 +02:00

88 lines
2.6 KiB
TypeScript

/* eslint-disable */
/**
* Generated `api` utility.
*
* THIS CODE IS AUTOMATICALLY GENERATED.
*
* To regenerate, run `npx convex dev`.
* @module
*/
import type * as accounts from "../accounts.js";
import type * as auth from "../auth.js";
import type * as categories from "../categories.js";
import type * as comdirect_auth from "../comdirect/auth.js";
import type * as comdirect_client from "../comdirect/client.js";
import type * as comdirect_internal from "../comdirect/internal.js";
import type * as comdirect_sync from "../comdirect/sync.js";
import type * as dashboard from "../dashboard.js";
import type * as http from "../http.js";
import type * as imports from "../imports.js";
import type * as lib_amortization from "../lib/amortization.js";
import type * as lib_categorize from "../lib/categorize.js";
import type * as lib_comdirectMap from "../lib/comdirectMap.js";
import type * as lib_helpers from "../lib/helpers.js";
import type * as lib_month from "../lib/month.js";
import type * as lib_seedCategories from "../lib/seedCategories.js";
import type * as loans from "../loans.js";
import type * as settings from "../settings.js";
import type * as transactions from "../transactions.js";
import type * as users from "../users.js";
import type {
ApiFromModules,
FilterApi,
FunctionReference,
} from "convex/server";
declare const fullApi: ApiFromModules<{
accounts: typeof accounts;
auth: typeof auth;
categories: typeof categories;
"comdirect/auth": typeof comdirect_auth;
"comdirect/client": typeof comdirect_client;
"comdirect/internal": typeof comdirect_internal;
"comdirect/sync": typeof comdirect_sync;
dashboard: typeof dashboard;
http: typeof http;
imports: typeof imports;
"lib/amortization": typeof lib_amortization;
"lib/categorize": typeof lib_categorize;
"lib/comdirectMap": typeof lib_comdirectMap;
"lib/helpers": typeof lib_helpers;
"lib/month": typeof lib_month;
"lib/seedCategories": typeof lib_seedCategories;
loans: typeof loans;
settings: typeof settings;
transactions: typeof transactions;
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: {};