fix-import

This commit is contained in:
tonyrewin 2022-10-22 17:20:40 +03:00
parent 88582f6d55
commit eda0c46f29

View File

@ -4,7 +4,7 @@ import type { EditorState } from 'prosemirror-state'
import { undo, redo } from 'prosemirror-history' import { undo, redo } from 'prosemirror-history'
import { selectAll, deleteSelection } from 'prosemirror-commands' import { selectAll, deleteSelection } from 'prosemirror-commands'
import { undo as yUndo, redo as yRedo } from 'y-prosemirror' import { undo as yUndo, redo as yRedo } from 'y-prosemirror'
import { debounce } from 'lodash' import debounce from 'lodash/debounce'
import { createSchema, createExtensions, createEmptyText } from '../prosemirror/setup' import { createSchema, createExtensions, createEmptyText } from '../prosemirror/setup'
import { State, Draft, Config, ServiceError, newState, ExtensionsProps } from './context' import { State, Draft, Config, ServiceError, newState, ExtensionsProps } from './context'
import { mod } from '../env' import { mod } from '../env'