6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
type Params = {
|
|
req: Request;
|
|
};
|
|
export default function bunextRequestHandler({ req, }: Params): Promise<Response>;
|
|
export {};
|