UNPKG

@mdefy/ngx-markdown-editor

Version:

An Angular Markdown Editor in WYSIWYG style with extensive functionality, high customizability and an integrated material theme.

15 lines (14 loc) 506 B
import { EventEmitter } from '@angular/core'; import { Observable } from 'rxjs'; /** * An event emitter that is able to transform an RxJS observable * into an Angular event. */ export declare class ObservableEmitter<T> extends EventEmitter<T> { /** * Subscribes to the specified RxJS observable and emits an event * containing the observed value. Unsubscribes the passed observable * when the event is unsubscribed. */ emitObservable(o: Observable<T>): void; }