Files
cartlog-admin/node_modules/jodit/esm/plugins/select/config.d.ts
2026-01-01 15:25:19 +05:30

29 lines
1.1 KiB
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
*/
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 {};