You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
299 B
Plaintext

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