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