UNPKG

@blocknote/react

Version:

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

10 lines (9 loc) 441 B
/** * Subscribes to file upload completion events. The callback is invoked whenever * a file upload finishes within the editor, and the subscription is * automatically cleaned up when the component unmounts. * * @param callback - Function called when an upload completes. Receives the * `blockId` of the block whose upload finished, if available. */ export declare function useOnUploadEnd(callback: (blockId?: string) => void): void;