tiptap/packages/extension-dropcursor/src/index.ts
2020-11-25 23:35:23 +01:00

31 lines
556 B
TypeScript

import { Extension } from '@tiptap/core'
import { dropCursor } from 'prosemirror-dropcursor'
export interface DropcursorOptions {
color: string | null,
width: number | null,
class: string | null,
}
const Dropcursor = Extension.create({
defaultOptions: <DropcursorOptions>{
color: 'black',
width: 1,
class: null,
},
addProseMirrorPlugins() {
return [
dropCursor(this.options),
]
},
})
export default Dropcursor
declare module '@tiptap/core' {
interface AllExtensions {
Dropcursor: typeof Dropcursor,
}
}