We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding the following to js/headers_test.ts break it
js/headers_test.ts
test(function headerTypesAvailable() { function newHeaders(): Headers { return new Headers(); } const headers = newHeaders(); assert(headers instanceof Headers); });
Results in the following error:
> ./out/debug/deno js/headers_test.ts Compiling /Users/rld/src/deno/js/headers_test.ts /Users/rld/src/deno/js/headers_test.ts:176:26 - error TS2304: Cannot find name 'Headers'. 176 function newHeaders(): Headers { ~~~~~~~
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Adding the following to
js/headers_test.ts
break itResults in the following error:
The text was updated successfully, but these errors were encountered: