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
From microsoft/vscode#76957 TypeScript Version: [email protected]
Search Terms:
Code
For the following javascript, trigger parameter hints on createServer
createServer
const http = require('http'); http.createServer(
Expected behavior: The function signature of first parameter is shown.
Actual behavior: We show a type alias: http.RequestListener. Node defines this type as:
http.RequestListener
type RequestListener = (req: IncomingMessage, res: ServerResponse) => void;
Playground Link:
Related Issues:
The text was updated successfully, but these errors were encountered:
This would be solved by the interactive quick info proposals we've discussed
Sorry, something went wrong.
Duplicate #25784 ?
Yes. I can't find the interactive hover issue but that would fix these issues
No branches or pull requests
From microsoft/vscode#76957
TypeScript Version: [email protected]
Search Terms:
Code
For the following javascript, trigger parameter hints on
createServer
Expected behavior:
The function signature of first parameter is shown.
Actual behavior:
We show a type alias:
http.RequestListener
. Node defines this type as:Playground Link:
Related Issues:
The text was updated successfully, but these errors were encountered: