6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import { CellSelection } from 'prosemirror-tables'
|
|
|
|
export function isCellSelection(value: unknown): value is CellSelection {
|
|
return value instanceof CellSelection
|
|
}
|