@fileverse-dev/ddoc 2.0.1 → 2.0.2-patch

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,6 +32,8 @@ export declare const useEditorToolbar: ({ editor, onError, }: {
32
32
  toolRef: React.RefObject<HTMLDivElement>;
33
33
  toolVisibility: IEditorTool;
34
34
  setToolVisibility: React.Dispatch<React.SetStateAction<IEditorTool>>;
35
+ isExportModalOpen: boolean;
36
+ setIsExportModalOpen: React.Dispatch<React.SetStateAction<boolean>>;
35
37
  };
36
38
  export declare const TextHighlighter: ({ editor, setVisibility, elementRef, }: {
37
39
  editor: Editor;
@@ -6,7 +6,7 @@ declare module '@tiptap/core' {
6
6
  uploadMarkdownFile: () => Command;
7
7
  };
8
8
  exportMarkdownFile: {
9
- exportMarkdownFile: () => Command;
9
+ exportMarkdownFile: () => any;
10
10
  };
11
11
  }
12
12
  }