wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
13 lines (12 loc) • 366 B
TypeScript
/**
* @description 编辑区域 tab 的特殊处理
* @author wangfupeng
*/
import Editor from '../../editor/index';
/**
* 编辑区域 tab 的特殊处理,转换为空格
* @param editor 编辑器实例
* @param tabDownEvents tab down 事件钩子
*/
declare function tabHandler(editor: Editor, tabDownEvents: Function[]): void;
export default tabHandler;