UNPKG

550 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module paste-from-office/filters/removemsattributes
7 */
8import { type ViewDocumentFragment } from 'ckeditor5/src/engine.js';
9/**
10 * Cleanup MS attributes like styles, attributes and elements.
11 *
12 * @param documentFragment element `data.content` obtained from clipboard.
13 */
14export default function removeMSAttributes(documentFragment: ViewDocumentFragment): void;