UNPKG

@wangeditor-next/code-highlight

Version:
15 lines (14 loc) 416 B
/** * @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;