patent-editor 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib.d.ts +4 -0
- package/dist/lib.js +484 -479
- package/dist/lib.js.map +1 -1
- package/package.json +1 -1
package/dist/lib.d.ts
CHANGED
|
@@ -364,6 +364,8 @@ declare interface EditorViewProps {
|
|
|
364
364
|
to: number;
|
|
365
365
|
sectionType?: string;
|
|
366
366
|
}) => void;
|
|
367
|
+
/** Namespace for the PatchDiffPlugin patch store (default: 'default'). */
|
|
368
|
+
patchEditorId?: string;
|
|
367
369
|
}
|
|
368
370
|
|
|
369
371
|
export declare function exportToPdf(editor: Editor): Promise<void>;
|
|
@@ -436,6 +438,8 @@ export declare interface PatentEditorProps {
|
|
|
436
438
|
to: number;
|
|
437
439
|
sectionType?: string;
|
|
438
440
|
}) => void;
|
|
441
|
+
/** Namespace for the PatchDiffPlugin patch store (default: 'default'). */
|
|
442
|
+
patchEditorId?: string;
|
|
439
443
|
}
|
|
440
444
|
|
|
441
445
|
export declare interface PatentEditorRef {
|