We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 991c731 commit 8499232Copy full SHA for 8499232
src/extensions/behavior/Cursor/index.ts
@@ -2,6 +2,8 @@ import {dropCursor} from 'prosemirror-dropcursor';
2
import type {ExtensionAuto} from '../../../core';
3
import {gapCursor} from './gapcursor';
4
5
+export {GapCursorSelection, isGapCursorSelection} from './GapCursorSelection';
6
+
7
export type CursorOptions = {
8
dropOptions?: Parameters<typeof dropCursor>[0];
9
};
src/extensions/behavior/Selection/index.ts
@@ -9,6 +9,8 @@ export {
findFakeParaPosClosestToPos,
10
} from './commands';
11
12
+export type {Direction as SelectionDirection} from './commands';
13
14
export const Selection: ExtensionAuto = (builder) => {
15
builder.addPlugin(selection);
16
0 commit comments