We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For this function
let f = async (a, b) => a + b
the following types are shown on hover:
f
(int, int) => promise<int>
a
int => promise<int>
b
int