@wangeditor/core
Version:
15 lines (14 loc) • 430 B
TypeScript
/**
* @description dropPanel button class
* @author wangfupeng
*/
import { IDropPanelMenu } from '../interface';
import BaseButton from './BaseButton';
declare class DropPanelButton extends BaseButton {
private dropPanel;
menu: IDropPanelMenu;
constructor(key: string, menu: IDropPanelMenu, inGroup?: boolean);
onButtonClick(): void;
private handleDropPanel;
}
export default DropPanelButton;