Update API routes function pass #2

This commit is contained in:
2026-04-10 11:48:30 +01:00
parent 349b99bacf
commit 257adfec39
4 changed files with 18 additions and 9 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
type Params = {
req: Request;
};
export default function ({ req }: Params): Promise<Response>;
export default function ({ req }: Params): Promise<Response | undefined>;
export {};