UNPKG

579 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/removexmlns
7 */
8import type { UpcastWriter, ViewDocumentFragment } from 'ckeditor5/src/engine.js';
9/**
10 * Removes the `xmlns` attribute from table pasted from Google Sheets.
11 *
12 * @param documentFragment element `data.content` obtained from clipboard
13 */
14export default function removeXmlns(documentFragment: ViewDocumentFragment, writer: UpcastWriter): void;