1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { openapi2TS } from "https://esm.town/v/pomdtr/openapi2TS";
export async function valtownOpenAPI(req: Request) {
return new Response(
await openapi2TS(
"https://www.val.town/docs/openapi.yaml",
),
{
headers: {
"Content-Type": "text/typescript",
},
},
);
}