How the Editor.js Core API could be integrated with Angular

Installed EditorJS @editorjs/editorjs

Added below MarkerTool calss

class MarkerTool {
constructor({api}) {
this.api = api;
this.button = null;
}

render() {
this.button = document.createElement(‘button’);
this.button.type = ‘button’;
this.button.textContent = ‘M’;
this.button.classList.add(this.api.styles.inlineToolButton);

  return this.button;

}

how the Editor.js Core API could be integrated with Angular.