import { DomUniverse } from '@ephox/boss'; import type { SugarElement } from '@ephox/sugar'; import * as Pathway from '../general/Pathway'; const universe = DomUniverse(); const simplify = (elements: SugarElement[]): SugarElement[] => { return Pathway.simplify(universe, elements); }; export { simplify };