import { DomUniverse } from '@ephox/boss'; import type { SugarElement } from '@ephox/sugar'; import type { SpotPoint } from '../data/Types'; import * as Descent from '../general/Descent'; const universe = DomUniverse(); const toLeaf = (element: SugarElement, offset: number): SpotPoint => { return Descent.toLeaf(universe, element, offset); }; /* The purpose of freefall is that they will land on an element that is not whitespace text. This * can be very useful inside beautified content */ const freefallLtr = (element: SugarElement): SpotPoint => { return Descent.freefallLtr(universe, element); }; const freefallRtl = (element: SugarElement): SpotPoint => { return Descent.freefallRtl(universe, element); }; export { toLeaf, freefallLtr, freefallRtl };