UNPKG

645 BTypeScriptView Raw
1/**
2 * @description 事件配置
3 * @author wangfupeng
4 */
5import { EMPTY_FN } from '../utils/const';
6export declare type TCatalog = {
7 tag: string;
8 id: string;
9 text: string;
10};
11/**
12 * 提示信息
13 * @param alertInfo alert info
14 * @param alertType 错误提示类型
15 * @param debugInfo debug info
16 */
17declare function customAlert(alertInfo: string, alertType: string, debugInfo?: string): void;
18declare const _default: {
19 onchangeTimeout: number;
20 onchange: typeof EMPTY_FN;
21 onfocus: typeof EMPTY_FN;
22 onblur: typeof EMPTY_FN;
23 onCatalogChange: null;
24 customAlert: typeof customAlert;
25};
26export default _default;