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
377 B
Plaintext
13 lines
377 B
Plaintext
11 months ago
|
/**
|
||
|
* @description 初始化编辑器选区,将光标定位到文档末尾
|
||
|
* @author wangfupeng
|
||
|
*/
|
||
|
import Editor from '../index';
|
||
|
/**
|
||
|
* 初始化编辑器选区,将光标定位到文档末尾
|
||
|
* @param editor 编辑器实例
|
||
|
* @param newLine 是否新增一行
|
||
|
*/
|
||
|
declare function initSelection(editor: Editor, newLine?: boolean): void;
|
||
|
export default initSelection;
|