UNPKG

246 BTypeScriptView Raw
1/**
2 * @description disable 内容编辑
3 * @author lichunlin
4 */
5import Editor from '../index';
6import '../../assets/style/disable.less';
7export default function disableInit(editor: Editor): {
8 disable: () => void;
9 enable: () => void;
10};