UNPKG

@textbus/core

Version:

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

15 lines (14 loc) 379 B
import { Observable } from '@tanbo/stream'; /** * Textbus 控制器 */ export declare class Controller { /** 当只读模式变更时触发 */ onReadonlyStateChange: Observable<boolean>; /** 是否只读 */ get readonly(): boolean; set readonly(b: boolean); private _readonly; private readonlyStateChangeEvent; constructor(readonly: boolean); }