I am working with a GLSP Node server and Diagram VScode extension in Typescript.
When I try to launch the application, I am getting the following error:
(node:36950) UnhandledPromiseRejectionWarning: Error: No matching bindings found for serviceIdentifier: ModuleModelState
at _validateActiveBindingCount (/Users/christine.samarchi/Desktop/FORCE/solution-builder-vscode-extension/graphical-editor/glsp-server-node/node_modules/inversify/src/planning/planner.ts:113:23)
I've tried adding ModelState in my GModelDiagramModule file as follows:
protected override bindModelState(): BindingTarget<ModelState> | undefined {
return { service: ModuleModelState };
}
I am getting this error as well:
Property 'bindModelState' in type 'WorkflowDiagramModule' is not assignable to the same property in base type 'GModelDiagramModule'.
Does anyone have any clue what is this issue?