UNPKG

@blocknote/core

Version:

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

12 lines (10 loc) 283 B
import type { Dictionary } from "../../i18n/dictionary.js"; export type DefaultSuggestionItem = { key: keyof Omit<Dictionary["slash_menu"], "page_break">; title: string; onItemClick: () => void; subtext?: string; badge?: string; aliases?: string[]; group?: string; };