Trying to add avatar upload. Project works rn so wanna push

This commit is contained in:
2025-09-03 10:52:10 -05:00
parent 35215d34a1
commit 6febfa05d4
8 changed files with 144 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ import type {
} from "convex/server";
import type * as CustomPassword from "../CustomPassword.js";
import type * as auth from "../auth.js";
import type * as files from "../files.js";
import type * as http from "../http.js";
import type * as myFunctions from "../myFunctions.js";
@@ -29,6 +30,7 @@ import type * as myFunctions from "../myFunctions.js";
declare const fullApi: ApiFromModules<{
CustomPassword: typeof CustomPassword;
auth: typeof auth;
files: typeof files;
http: typeof http;
myFunctions: typeof myFunctions;
}>;