UNPKG

@blocknote/react

Version:

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

3 lines (2 loc) 365 B
import { BlockNoteEditor, BlockSchema, LinkToolbarState, InlineContentSchema, StyleSchema, UiElementPosition } from "@blocknote/core"; export type LinkToolbarProps = Omit<LinkToolbarState, keyof UiElementPosition> & Pick<BlockNoteEditor<BlockSchema, InlineContentSchema, StyleSchema>["linkToolbar"], "deleteLink" | "editLink" | "startHideTimer" | "stopHideTimer">;