jodit-pro
Version:
PRO Version of Jodit Editor
25 lines (24 loc) • 725 B
TypeScript
/*!
* Jodit Editor PRO (https://xdsoft.net/jodit/)
* See LICENSE.md in the project root for license information.
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
*/
declare module 'jodit/esm/config' {
interface Config {
pasteFromWord: {
/**
* Turn off heuristic analysis when pasting from word
*/
enable: boolean;
/**
* Convert units to px
*/
convertUnitsToPixel: boolean;
/**
* List of attributes which should not be removed when pasting from word
*/
allowedStyleProps?: string[];
};
}
}
export {};