remove unused file

This commit is contained in:
Philipp Kühn
2021-02-26 19:03:41 +01:00
parent 2b9f6bc129
commit e31ddbd2d8
2 changed files with 0 additions and 7 deletions

View File

@@ -1,6 +0,0 @@
import { CellSelection } from 'prosemirror-tables'
import isObject from '../utilities/isObject'
export default function isCellSelection(value: unknown): value is CellSelection {
return isObject(value) && value instanceof CellSelection
}