Context
Description
In version "0.55.1"
In file node_modules/monaco-editor/esm/vs/language/typescript/tsWorker.js, the getQuickInfoAtPosition API doesn't accept the 3rd and 4th parameters.
async getQuickInfoAtPosition(fileName, position) {
if (fileNameIsLib(fileName)) {
return void 0;
}
return this._languageService.getQuickInfoAtPosition(fileName, position);
}
Whilst the underlying _languageService.getQuickInfoAtPosition does support the 3rd and 4th parameters.
File: node_modules/monaco-editor/esm/vs/language/typescript/lib/typescriptServices.js
function getQuickInfoAtPosition(fileName, position, maximumLength, verbosityLevel) {
...
}