We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeScript Version:
1.8.9
Code
Promise.all([Promise.resolve('')]); // has type Promise<Promise<string>[]>
Expected behavior: The expression has type Promise<string[]> as in 1.8.7 Actual behavior: The expression has type Promise<Promise<string>[]>
Promise<string[]>
Promise<Promise<string>[]>