Update page server types

This commit is contained in:
2026-08-14 06:49:12 +01:00
parent 8d12329f01
commit 22d3dedab2
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ export type BunextPageServerFn<
T extends { [k: string]: any } = { [k: string]: any },
> = (
ctx: Omit<BunxRouteParams, "body"> & {
props?: any;
props?: T;
},
) => Promise<BunextPageModuleServerReturn<T>>;