You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
291 B
Plaintext
12 lines
291 B
Plaintext
11 months ago
|
/**
|
||
|
* @description Text 事件钩子函数。Text 公共的,不是某个菜单独有的
|
||
|
* @wangfupeng
|
||
|
*/
|
||
|
import Text from '../index';
|
||
|
/**
|
||
|
* 初始化 text 事件钩子函数
|
||
|
* @param text text 实例
|
||
|
*/
|
||
|
declare function initTextHooks(text: Text): void;
|
||
|
export default initTextHooks;
|