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