@textbus/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) • 521 B
TypeScript
import { InjectionToken } from '@tanbo/di';
import { ViewOptions } from './types';
/**
* 编辑器可选项依赖注入 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>;