@yoopta/exports 1.9.0-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/README.md +11 -0
- package/dist/html/deserialize.d.ts +2 -0
- package/dist/html/serialize.d.ts +2 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +1582 -0
- package/dist/markdown/deserialize.d.ts +2 -0
- package/dist/markdown/serialize.d.ts +2 -0
- package/dist/utils/mergePlugins.d.ts +4 -0
- package/package.json +39 -0
package/README.md
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { serializeHtml } from './html/serialize';
|
|
2
|
+
import { deserializeMarkdown } from './markdown/deserialize';
|
|
3
|
+
import { serializeMarkdown } from './markdown/serialize';
|
|
4
|
+
import { deserializeHtml } from './html/deserialize';
|
|
5
|
+
declare const markdown: {
|
|
6
|
+
deserialize: typeof deserializeMarkdown;
|
|
7
|
+
serialize: typeof serializeMarkdown;
|
|
8
|
+
};
|
|
9
|
+
declare const html: {
|
|
10
|
+
deserialize: typeof deserializeHtml;
|
|
11
|
+
serialize: typeof serializeHtml;
|
|
12
|
+
};
|
|
13
|
+
declare const yoptaExports: {
|
|
14
|
+
markdown: {
|
|
15
|
+
deserialize: typeof deserializeMarkdown;
|
|
16
|
+
serialize: typeof serializeMarkdown;
|
|
17
|
+
};
|
|
18
|
+
html: {
|
|
19
|
+
deserialize: typeof deserializeHtml;
|
|
20
|
+
serialize: typeof serializeHtml;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export { markdown, html };
|
|
24
|
+
export default yoptaExports;
|