bunext/dist/functions/server/web-pages/grab-page-server-res.d.ts
2026-04-18 11:17:13 +01:00

11 lines
447 B
TypeScript

import type { BunextPageModuleServerReturn, BunextPageServerFn, BunxRouteParams } from "../../../types";
type Params = {
url?: URL;
server_function?: BunextPageServerFn;
query?: Record<string, string>;
routeParams?: BunxRouteParams;
props?: Record<string, any> | null;
};
export default function grabPageServerRes({ url, query, routeParams, server_function, props, }: Params): Promise<BunextPageModuleServerReturn>;
export {};