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
299 B
Plaintext
12 lines
299 B
Plaintext
11 months ago
|
/**
|
||
|
* @description 按钮菜单 Class
|
||
|
* @author wangfupeng
|
||
|
*/
|
||
|
import { DomElement } from '../../utils/dom-core';
|
||
|
import Editor from '../../editor/index';
|
||
|
import Menu from './Menu';
|
||
|
declare class BtnMenu extends Menu {
|
||
|
constructor($elem: DomElement, editor: Editor);
|
||
|
}
|
||
|
export default BtnMenu;
|