mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 00:27:49 +08:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
|
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
|
||
|
}
|