UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

29 lines (28 loc) 1.1 kB
/*! * 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 */ declare module 'jodit/config' { interface Config { select: { /** * When the user selects the elements of the list - from the beginning to * the end from the inside - when copying, we change the selection * to cover the entire selected container * * `<ul><li>|test|</li></ul>` will be `|<ul><li>test</li></ul>|` * `<ul><li>|test|</li><li>|test</li></ul>` will be `<ul>|<li>test</li><li>|test</li></ul>` */ normalizeSelectionBeforeCutAndCopy: boolean; /** * Normalize selection after triple click * @example * * `<ul><li>|test</li><li>|pop</li></ul>` will be `<ul><li>|test|</li><li>pop</li</ul>|` */ normalizeTripleClick: boolean; }; } } export {};