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