You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I should note that the fix for this is part of TypeSript 2.1. VSCode ships with an older version of TypeScript. Please see Using Newer TypeScript Versions documentation for more details on updating your VSCode to use a different version of TypeScript.
From @Sequoia on July 14, 2016 14:7
Goal
Expected

## Actual
## Things I've tried 1. `.then(function(/*Array*/dirList ) {` 2. `.then(function(/**Array*/dirList ) {` 3. `.then(function(/**@type Array*/dirList ) {` 4. `.then(function(/**@type {Array}*/dirList ) {` 5. `.then(function(/**@type {String[]}*/dirList ) {` 6. `.then(/**@param {String[]} dirList */ function(dirList ) {` 7. `.then(function(dirList/**=String[]*/) {` 8. `.then(function(dirList/*=String[]*/) {` 9. `.then(function(dirList/*:String[]*/) {` 10. `.then(function(/**{String[]}:*/dirList ) {` 11. `.then(function(/*String[]:*/dirList ) {`😢 Help
Copied from original issue: microsoft/vscode#9288
The text was updated successfully, but these errors were encountered: