Edoardo Luppi
Edoardo Luppi
@nikku I almost completed typings for `BpmnJS `and `EventBus`. I would just love to have more documentation on the objects returned to the callback functions, which seems to change between...
@nikku @philippfromme [here](https://github.com/lppedd/bpmnio-typings) you can find an initial attempt at typings. I've done a bit of everything, but still I'm losing a lot of time debugging trying to understand objects'...
@nikku yeah, that was a good idea! The same concept is applied also to `Moddle#create` [here](https://github.com/lppedd/bpmnio-typings/blob/704e2ffb2e45429eb83cf305f9a43a0a6a391a42/src/%40types/moddle/index.d.ts#L20). Example: ``` const startEvent = moddle.create('bpmn:StartEvent'); ^ type is BpmnStartEvent const extensionElements= moddle.create('bpmn:ExtensionElements'); ^...
That's how I implemented `didi` injection. I throw this in here because it might be useful for future reference. ``` @Inject( 'eventBus', 'styles', 'pathMap', 'canvas', 'textRenderer' ) class CustomRenderer extends...
@nikku Hi! I've made some progress with typings. I'd like some help with this declaration, the `context` parameter. https://github.com/lppedd/bpmnio-typings/blob/cc78174f2ff610b9d410928d1f2be779ec431f8b/src/%40types/diagram-js/index.d.ts#L1226
@patoncrispy If you want you can PR here https://github.com/lppedd/bpmnio-typings for now. I'd like to move it to DefinitelyTyped but it's still early imho.
@patoncrispy it has been months I haven't worked on TS/JS projects, but I can assure you what I have done is a small portion of the framework. There is much...
@anastariqkhan Hi! Sorry for the late response. If you'd like to provide JIRA issues support, I think you'd be better of coding your own Provider. For example you could implement...
@bluelovers thanks! I have no idea why this issue was closed actually
@Adria75 Currently, this plugin is really strict on Conventional Commits. By that I mean that the lexer & parser strictly follow the convention. What I'd try to understand is why...