feat: add initial type hints for API docs

This commit is contained in:
DecDuck
2025-08-09 19:26:17 +10:00
parent b84d1f20b5
commit 7af29ef0eb
5 changed files with 11 additions and 3 deletions

View File

@ -7,6 +7,9 @@ const DeleteInvite = type({
id: "string",
}).configure(throwingArktype);
/**
* Delete a simple auth invitation
*/
export default defineEventHandler<{
body: typeof DeleteInvite.infer;
}>(async (h3) => {