UNPKG

suneditor

Version:

Vanilla JavaScript based WYSIWYG web editor

12 lines (11 loc) 379 B
import type {} from '../typedef'; /** * @description Converts MS Word/Excel/OneNote HTML clipboard data to clean, standards-compliant HTML. * @param {string} html Raw HTML string from MS Office clipboard * @returns {string} Cleaned HTML string */ export function cleanHTML(html: string): string; declare namespace _default { export { cleanHTML }; } export default _default;