@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
13 lines (12 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.RelativeSelectionPos = void 0;
var RelativeSelectionPos = exports.RelativeSelectionPos = /*#__PURE__*/function (RelativeSelectionPos) {
RelativeSelectionPos["Before"] = "Before";
RelativeSelectionPos["Start"] = "Start";
RelativeSelectionPos["Inside"] = "Inside";
RelativeSelectionPos["End"] = "End";
return RelativeSelectionPos;
}({});