jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
17 lines (16 loc) • 728 B
TypeScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export * from "./move-node-inside-start";
export * from "./move-the-node-along-the-edge-outward";
/**
* Check if the cursor is at the edge of the string
* @private
*/
export declare function cursorInTheEdgeOfString(container: Node, offset: number, start: boolean, end: boolean): boolean;
export declare function findCorrectCurrentNode(node: Node, range: Range, rightMode: boolean, isCollapsed: boolean, checkChild: boolean, child: (nd: Node) => Node | null): {
node: Node;
rightMode: boolean;
};