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.
17 lines
442 B
Plaintext
17 lines
442 B
Plaintext
import Editor from '../../editor/index';
|
|
import PanelMenu from '../menu-constructors/PanelMenu';
|
|
import { MenuActive } from '../menu-constructors/Menu';
|
|
declare class Emoticon extends PanelMenu implements MenuActive {
|
|
constructor(editor: Editor);
|
|
/**
|
|
* 创建 panel
|
|
*/
|
|
private createPanel;
|
|
/**
|
|
* 菜单表情点击事件
|
|
*/
|
|
clickHandler(): void;
|
|
tryChangeActive(): void;
|
|
}
|
|
export default Emoticon;
|