import { DomUniverse } from '@ephox/boss'; import type { SugarElement } from '@ephox/sugar'; import * as Injection from '../general/Injection'; const universe = DomUniverse(); const atStartOf = (element: SugarElement, offset: number, injection: SugarElement): void => { Injection.atStartOf(universe, element, offset, injection); }; export { atStartOf };