UNPKG

299 BTypeScriptView Raw
1/**
2 * @description 滚动到指定锚点
3 * @author zhengwenjian
4 */
5import Editor from '../index';
6/**
7 * 编辑器滚动到指定锚点
8 * @param editor 编辑器实例
9 * @param id 标题锚点id
10 */
11declare const scrollToHead: (editor: Editor, id: string) => void;
12export default scrollToHead;