From 17fdb5bcdf656caa75247e17b6f8529f1eb92e50 Mon Sep 17 00:00:00 2001 From: Alistair Smith Date: Wed, 24 Sep 2025 21:37:25 -0700 Subject: [PATCH] move this --- packages/bun-types/app.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/bun-types/app.d.ts b/packages/bun-types/app.d.ts index 1e3dbff191..832418fc3b 100644 --- a/packages/bun-types/app.d.ts +++ b/packages/bun-types/app.d.ts @@ -1381,7 +1381,6 @@ declare module "bun:app" { * The loaded module of the page itself. */ readonly pageModule: any; - readonly request?: Request | undefined; /** * The loaded module of all of the route layouts. The first one is the * inner-most, the last is the root layout. @@ -1407,7 +1406,7 @@ declare module "bun:app" { */ readonly params: null | Record; - readonly request: Request | undefined; + readonly request?: Request | undefined; /** * A list of js files that the route will need to be interactive.