@yoopta/exports 1.9.0-rc → 1.9.2-rc
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/html/deserialize.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -1576
- package/dist/markdown/deserialize.d.ts +2 -2
- package/dist/utils/mergePlugins.d.ts +4 -4
- package/package.json +6 -6
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare function deserializeHtml(htmlString: string, plugins:
|
|
1
|
+
import { YooptaBaseElement, YooptaPluginType } from '@yoopta/editor';
|
|
2
|
+
export declare function deserializeHtml(htmlString: string, plugins: YooptaPluginType<unknown, YooptaBaseElement<string>>[]): any;
|
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare const html: {
|
|
|
10
10
|
deserialize: typeof deserializeHtml;
|
|
11
11
|
serialize: typeof serializeHtml;
|
|
12
12
|
};
|
|
13
|
-
declare const
|
|
13
|
+
declare const yooptaExports: {
|
|
14
14
|
markdown: {
|
|
15
15
|
deserialize: typeof deserializeMarkdown;
|
|
16
16
|
serialize: typeof serializeMarkdown;
|
|
@@ -21,4 +21,4 @@ declare const yoptaExports: {
|
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
export { markdown, html };
|
|
24
|
-
export default
|
|
24
|
+
export default yooptaExports;
|