index.d.ts 291 B

1234567891011
  1. /**
  2. * @description Text 事件钩子函数。Text 公共的,不是某个菜单独有的
  3. * @wangfupeng
  4. */
  5. import Text from '../index';
  6. /**
  7. * 初始化 text 事件钩子函数
  8. * @param text text 实例
  9. */
  10. declare function initTextHooks(text: Text): void;
  11. export default initTextHooks;