UNPKG

suneditor

Version:

Pure JavaScript based WYSIWYG web editor

8 lines (7 loc) 222 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; }