rme 0.2.2 → 0.2.3-alpha.2
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/index.d.ts +2 -0
- package/dist/index.mjs +7938 -7216
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -377,6 +377,8 @@ declare class MarkdownSerializer {
|
|
|
377
377
|
type ExtensionsOptions = {
|
|
378
378
|
disableAllBuildInShortcuts?: boolean;
|
|
379
379
|
handleViewImgSrcUrl?: (src: string) => Promise<string>;
|
|
380
|
+
imageHostingHandler?: (src: string) => Promise<string>;
|
|
381
|
+
imageCopyHandler?: (src: string) => Promise<string>;
|
|
380
382
|
ai?: AIOptions;
|
|
381
383
|
customCopyFunction?: CustomCopyFunction;
|
|
382
384
|
};
|