wangeditor
Version:
wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费
27 lines (26 loc) • 634 B
TypeScript
/**
* @description 事件配置
* @author wangfupeng
*/
import { EMPTY_FN } from '../utils/const';
export declare type TCatalog = {
tag: string;
id: string;
text: string;
};
/**
* 提示信息
* @param alertInfo alert info
* @param alertType 错误提示类型
* @param debugInfo debug info
*/
declare function customAlert(alertInfo: string, alertType: string, debugInfo?: string): void;
declare const _default: {
onchangeTimeout: number;
onchange: null;
onfocus: typeof EMPTY_FN;
onblur: typeof EMPTY_FN;
onCatalogChange: null;
customAlert: typeof customAlert;
};
export default _default;