UNPKG

@textbus/editor

Version:

Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.

9 lines (8 loc) 225 B
import { Observable } from '@tanbo/stream'; export interface ViewController<T> { elementRef: HTMLElement; onComplete: Observable<T>; onCancel: Observable<void>; reset(): void; update(newValue: T): void; }