bunext/dist/functions/server/handle-routes.d.ts

6 lines
122 B
TypeScript

type Params = {
req: Request;
};
export default function ({ req }: Params): Promise<Response | undefined>;
export {};