/* 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 deviceReports from "../deviceReports.js"; import type * as helpers from "../helpers.js"; import type * as http from "../http.js"; import type * as lib_githubRepoScan from "../lib/githubRepoScan.js"; import type * as lib_githubSubmodule from "../lib/githubSubmodule.js"; import type * as lib_meshforgeYaml from "../lib/meshforgeYaml.js"; import type * as lib_platformioScan from "../lib/platformioScan.js"; import type * as lib_r2 from "../lib/r2.js"; import type * as lib_tagSemver from "../lib/tagSemver.js"; import type * as repoBuildDownloads from "../repoBuildDownloads.js"; import type * as repoBuilds from "../repoBuilds.js"; import type * as repoScanGitAction from "../repoScanGitAction.js"; import type * as repoScans from "../repoScans.js"; import type * as repoTags from "../repoTags.js"; import type { ApiFromModules, FilterApi, FunctionReference, } from "convex/server"; declare const fullApi: ApiFromModules<{ actions: typeof actions; admin: typeof admin; auth: typeof auth; deviceReports: typeof deviceReports; helpers: typeof helpers; http: typeof http; "lib/githubRepoScan": typeof lib_githubRepoScan; "lib/githubSubmodule": typeof lib_githubSubmodule; "lib/meshforgeYaml": typeof lib_meshforgeYaml; "lib/platformioScan": typeof lib_platformioScan; "lib/r2": typeof lib_r2; "lib/tagSemver": typeof lib_tagSemver; repoBuildDownloads: typeof repoBuildDownloads; repoBuilds: typeof repoBuilds; repoScanGitAction: typeof repoScanGitAction; repoScans: typeof repoScans; repoTags: typeof repoTags; }>; /** * 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 >; /** * 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 >; export declare const components: {};