UNPKG

wangeditor

Version:

wangEditor - 轻量级 web 富文本编辑器,配置方便,使用简单,开源免费

13 lines (12 loc) 299 B
/** * @description 滚动到指定锚点 * @author zhengwenjian */ import Editor from '../index'; /** * 编辑器滚动到指定锚点 * @param editor 编辑器实例 * @param id 标题锚点id */ declare const scrollToHead: (editor: Editor, id: string) => void; export default scrollToHead;