Fix API bundler. Use new esbuild context builder for it.

This commit is contained in:
2026-04-11 12:06:53 +01:00
parent c4f7cf9164
commit 814a289460
30 changed files with 465 additions and 15 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import type { BunxRouteParams } from "../types";
type Params = {
req: Request;
query?: any;
};
export default function grabRouteParams({ req, }: Params): Promise<BunxRouteParams>;
export default function grabRouteParams({ req, query: passed_query, }: Params): Promise<BunxRouteParams>;
export {};