UNPKG

suneditor

Version:

Vanilla JavaScript WYSIWYG web editor (2.x legacy version, actively maintained)

8 lines (7 loc) 229 B
import { Plugin } from './Plugin'; export interface CommandPlugin extends Plugin { /** * @description The behavior of the "command plugin" must be defined in the "action" method. */ action: () => void; }