We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First off, thanks for devolving this adapter, it's very useful!
I am getting following error when trying to set-up the example from README:
Type "LspWsConnection" is not assignable to parameter of type "ILspConnction" Type "LspWsConnection" is missing following properties from type "ILspConnction": on, off
I can @ts-ignore it, but after looking through the sources it seems that the on & off implementation is indeed missing - or am I missing something?
@ts-ignore
The text was updated successfully, but these errors were encountered:
Okey, it has to be something on my part/versions incompatibility. I've just realized that it is probably hidden within the EventEmitter.
Sorry, something went wrong.
Solved by:
npm install events npm install @types/events
Should events and types for events be included in the package.json's dependencies / devDependencies?
package.json
dependencies
devDependencies
No branches or pull requests
First off, thanks for devolving this adapter, it's very useful!
I am getting following error when trying to set-up the example from README:
I can
@ts-ignore
it, but after looking through the sources it seems that the on & off implementation is indeed missing - or am I missing something?The text was updated successfully, but these errors were encountered: