@blocknote/react
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
14 lines (12 loc) • 358 B
text/typescript
import {
DefaultInlineContentSchema,
DefaultStyleSchema,
FilePanelState,
InlineContentSchema,
StyleSchema,
UiElementPosition,
} from "@blocknote/core";
export type FilePanelProps<
I extends InlineContentSchema = DefaultInlineContentSchema,
S extends StyleSchema = DefaultStyleSchema,
> = Omit<FilePanelState<I, S>, keyof UiElementPosition>;