Tiny Mce Enlace bidireccional con angular 2/4

Este es mitinymce.component.ts

import {
  Component,
  OnDestroy,
  AfterViewInit,
  EventEmitter,
  Input,
  Output
} from '@angular/core';

@Component({
  selector: 'simple-tiny',
  template: `<textarea id="{{elementId}}"></textarea>`
})
export class SimpleTinyComponent implements AfterViewInit, OnDestroy {
  @Input() elementId: String;
  @Output() onEditorKeyup = new EventEmitter<any>();

  editor;

  ngAfterViewInit() {
    tinymce.init({
      selector: '#' + this.elementId,
      plugins: ['link', 'paste', 'table'],
      skin_url: 'assets/skins/lightgray',
      setup: editor => {
        this.editor = editor;
        editor.on('keyup', () => {
          const content = editor.getContent();
          this.onEditorKeyup.emit(content);
        });
      },
    });
  }

  ngOnDestroy() {
    tinymce.remove(this.editor);
  }
}

y ahora lo estoy usando mi html ya que ahora puedo obtener el texto a través delkeyupHandlerFunction pero quiero 2 vías vinculante conngModel

<simple-tiny
      [elementId]="'my-editor-id'"
      (onEditorKeyup)="keyupHandlerFunction($event)"
     >
</simple-tiny>

Este código es lo que sugirió tinyMCE pero quierongModel aquí para la unión de 2 vías, ¿cómo puedo hacerlo aquí?

me gusta:

<simple-tiny
      [elementId]="'my-editor-id'"
      (onEditorKeyup)="keyupHandlerFunction($event)"
      [(ngModel)]="value">
</simple-tiny>

<p>{{ "My Model" + model}} </p>

Respuestas a la pregunta(1)

Su respuesta a la pregunta