@blocknote/react
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
11 lines (10 loc) • 461 B
TypeScript
import { BlockNoteDefaultUIProps } from "./BlockNoteDefaultUI.js";
export type BlockNoteViewContextValue = {
editorProps: {
autoFocus?: boolean;
contentEditableProps?: Record<string, any>;
};
defaultUIProps: BlockNoteDefaultUIProps;
};
export declare const BlockNoteViewContext: import("react").Context<BlockNoteViewContextValue | undefined>;
export declare function useBlockNoteViewContext(): BlockNoteViewContextValue | undefined;