UNPKG

@textbus/editor

Version:

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

8 lines (7 loc) 218 B
import { Injector } from '@tanbo/di'; export interface Tool { setup(injector: Injector, limitElement: HTMLElement): HTMLElement; refreshState(): void; disabled(is: boolean): void; onDestroy?(): void; }