UNPKG

@remirror/pm

Version:

A bundled library containing all the core prosemirror libraries required for using remirror

10 lines (9 loc) 241 B
// src/tables.ts import { CellSelection } from "prosemirror-tables"; export * from "prosemirror-tables"; function isCellSelection(value) { return typeof value === "object" && value instanceof CellSelection; } export { isCellSelection };