UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

16 lines (15 loc) 606 B
/*! * 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 */ /** * @module selection */ import type { IJodit } from "../../../types/index"; /** * Moves the fake node inside the adjacent element if it lies next to it but not inside. * When the cursor is positioned in its place, it must be inside the element and not outside its border. * @private */ export declare function moveNodeInsideStart(j: IJodit, node: Node, start: boolean): void;