This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import { DomElement } from '../../utils/dom-core';
import Editor from '../../editor';
/**
* 判断传入的单行顶级选区选取是不是todo
* @param editor 编辑器对象
*/
declare function isTodo($topSelectElem: DomElement): boolean;
/**
* 判断选中的内容是不是都是todo
* @param editor 编辑器对象
*/
declare function isAllTodo(editor: Editor): boolean | undefined;