UNPKG

@blocknote/react

Version:

A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.

18 lines (16 loc) 433 B
import { DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema, InlineContentSchema, SpecificBlock, StyleSchema, } from "@blocknote/core"; export type TableCellMenuProps< I extends InlineContentSchema = DefaultInlineContentSchema, S extends StyleSchema = DefaultStyleSchema, > = { block: SpecificBlock<{ table: DefaultBlockSchema["table"] }, "table", I, S>; rowIndex: number; colIndex: number; };