/** * @typedef RemoveEditorsNSDataParams * @property {string[]=} additionalNamespaces */ export const name: "removeEditorsNSData"; export const description: "removes editors namespaces, elements and attributes"; /** * Remove editors namespaces, elements and attributes. * * @example * * * * * @author Kir Belevich * * @type {import('../lib/types.js').Plugin} */ export const fn: import("../lib/types.js").Plugin; export type RemoveEditorsNSDataParams = { additionalNamespaces?: string[] | undefined; };