Hi,
I’m using Angular 16, 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;
Thanks for your help