More implicit any error fixes

This commit is contained in:
Matt Bierner
2019-03-21 12:47:42 -07:00
parent 1d97b72495
commit d1e87a2dd5
22 changed files with 27 additions and 27 deletions

View File

@@ -200,7 +200,7 @@ export class ExtHostApiCommands {
description: 'Execute selection range provider.',
args: [
{ name: 'uri', description: 'Uri of a text document', constraint: URI },
{ name: 'positions', description: 'Positions in a text document', constraint: a => Array.isArray(a) }
{ name: 'positions', description: 'Positions in a text document', constraint: Array.isArray }
],
returns: 'A promise that resolves to an array of ranges.'
});