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
}

View File

@@ -19,7 +19,6 @@ export { default as isMarkActive } from './helpers/isMarkActive'
export { default as isNodeActive } from './helpers/isNodeActive' export { default as isNodeActive } from './helpers/isNodeActive'
export { default as isNodeSelection } from './helpers/isNodeSelection' export { default as isNodeSelection } from './helpers/isNodeSelection'
export { default as isTextSelection } from './helpers/isTextSelection' export { default as isTextSelection } from './helpers/isTextSelection'
export { default as isCellSelection } from './helpers/isCellSelection'
export { default as findParentNodeClosestToPos } from './helpers/findParentNodeClosestToPos' export { default as findParentNodeClosestToPos } from './helpers/findParentNodeClosestToPos'
export interface Commands {} export interface Commands {}