This commit is contained in:
2026-03-29 17:08:10 +01:00
parent 950bdc3dca
commit 2b170d24e1
11 changed files with 27 additions and 13 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
type Params = {
req: Request;
server: Bun.Server<any>;
};
export default function bunextRequestHandler({ req: initial_req, }: Params): Promise<Response>;
export default function bunextRequestHandler({ req: initial_req, server, }: Params): Promise<Response>;
export {};