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
Hi,
I’m using Angular 16 / "typescript": "~4.9.5", and when I import form-js-editor, I got the following compile error : “Type ‘EventBus’ is not generic”
To make it work I have to modify the following line in \node_modules@bpmn-io\form-js-editor\dist\types\features\dragging\Dragging.d.ts :
_eventBus: import(“diagram-js/lib/core/EventBus”).default<null>;
By
_eventBus: import(“diagram-js/lib/core/EventBus”).default;
OR
add “skipLibCheck” : true in tsconfig.json
But both solutions aren’t satisfying…
Thanks for your help
The text was updated successfully, but these errors were encountered:
Didn't try, but should work : _eventBus: import(“diagram-js/lib/core/EventBus”).default<any>;
Sorry, something went wrong.
Also had this issue
No branches or pull requests
Hi,
I’m using Angular 16 / "typescript": "~4.9.5", and when I import form-js-editor, I got the following compile error : “Type ‘EventBus’ is not generic”
To make it work I have to modify the following line in \node_modules@bpmn-io\form-js-editor\dist\types\features\dragging\Dragging.d.ts :
_eventBus: import(“diagram-js/lib/core/EventBus”).default<null>;
By
_eventBus: import(“diagram-js/lib/core/EventBus”).default;
OR
add “skipLibCheck” : true in tsconfig.json
But both solutions aren’t satisfying…
Thanks for your help
The text was updated successfully, but these errors were encountered: