This commit is contained in:
Bryan1029384756
2026-04-18 15:41:51 -05:00
parent 938df217f4
commit 593eaba82e
47 changed files with 3539 additions and 212 deletions

View File

@@ -8,9 +8,11 @@
* @module
*/
import type * as audit from "../audit.js";
import type * as auth from "../auth.js";
import type * as authActions from "../authActions.js";
import type * as authGuard from "../authGuard.js";
import type * as bans from "../bans.js";
import type * as categories from "../categories.js";
import type * as channelKeys from "../channelKeys.js";
import type * as channels from "../channels.js";
@@ -43,9 +45,11 @@ import type {
} from "convex/server";
declare const fullApi: ApiFromModules<{
audit: typeof audit;
auth: typeof auth;
authActions: typeof authActions;
authGuard: typeof authGuard;
bans: typeof bans;
categories: typeof categories;
channelKeys: typeof channelKeys;
channels: typeof channels;