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

/**
* @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;