1234567891011121314151617181920212223242526272829 |
- import { Plugin } from 'prosemirror-state';
- interface DropCursorOptions {
-
- color?: string | false;
-
- width?: number;
-
- class?: string;
- }
- declare function dropCursor(options?: DropCursorOptions): Plugin;
- export { dropCursor };
|