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