UNPKG

@textbus/platform-browser

Version:

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

19 lines (18 loc) 534 B
import { InjectionToken } from '@viewfly/core'; import { ViewOptions } from './browser-module'; /** * 编辑器可选项依赖注入 token */ export declare const EDITOR_OPTIONS: InjectionToken<ViewOptions>; /** * 编辑器容器依赖注入 token */ export declare const VIEW_CONTAINER: InjectionToken<HTMLElement>; /** * 编辑器容器依赖注入 token */ export declare const VIEW_DOCUMENT: InjectionToken<HTMLElement>; /** * 编辑器容器遮罩层 token */ export declare const VIEW_MASK: InjectionToken<HTMLElement>;