When I run check
on the YAUS example, I'm getting the following errors:
❱ deployctl check --libs=ns,fetchevent https://raw.githubusercontent.com/denoland/deploy_examples/main/yaus/mod.tsx
Check data:application/typescript;base64,aW1wb3J0IHR5cGUge30gZnJvbSAiZmlsZTovLy9Vc2Vycy9sY2FtcGJlbGwvTGlicmFyeS9DYWNoZXMvZGVuby9odHRwcy9kZW5vLmxhbmQvZWZkODZiZDc5YjUzNDUzOTlhYzI3YzQyNGE2NzgzYjM4NmZjODIxNzYyODYzYTVkOTc1M2YzYzRiNjVkOGQ3Ny50cyI7aW1wb3J0IHR5cGUge30gZnJvbSAiZmlsZTovLy9Vc2Vycy9sY2FtcGJlbGwvTGlicmFyeS9DYWNoZXMvZGVuby9odHRwcy9kZW5vLmxhbmQvOGE3YzI3ZGQ5Y2NkYWVhNjhkMTM2MjRjMGU0YjZkMTBlZjUxODlhNWU3YzI4YzczMWM4ZmExNTI5MGU3Y2FlMC50cyI7aW1wb3J0ICJodHRwczovL3Jhdy5naXRodWJ1c2VyY29udGVudC5jb20vZGVub2xhbmQvZGVwbG95X2V4YW1wbGVzL21haW4veWF1cy9tb2QudHN4Ijs=
error: TS2339 [ERROR]: Property 'entries' does not exist on type 'Headers'.
headers: Object.fromEntries(req.headers.entries()),
~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:6:45
TS2339 [ERROR]: Property 'entries' does not exist on type 'Headers'.
const headers = Object.fromEntries(response.headers.entries());
~~~~~~~
at https://deno.land/x/[email protected]/mod.ts:57:57
TS2339 [ERROR]: Property 'keys' does not exist on type 'URLSearchParams'.
for (const param of searchParams.keys()) {
~~~~
at https://deno.land/x/[email protected]/mod.ts:206:38
TS2339 [ERROR]: Property 'keys' does not exist on type 'Headers'.
for (const header of request.headers.keys()) {
~~~~
at https://deno.land/x/[email protected]/mod.ts:229:42
Found 4 errors.