@unlayer/exporters 1.389.0

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.
Files changed (4) hide show
  1. package/index.cjs +692 -0
  2. package/index.d.ts +73 -0
  3. package/index.js +692 -0
  4. package/package.json +45 -0
package/index.d.ts ADDED
@@ -0,0 +1,73 @@
1
+ // Auto-generated — do not edit. All types re-exported from @unlayer/types.
2
+
3
+ export type { DisplayMode, ExporterName, ButtonExporters, DividerExporters, HeadingExporters, HtmlExporters, ImageExporters, MenuExporters, ParagraphExporters, SocialExporters, TableExporters, TextExporters, TimerExporters, VideoExporters, BodyExporters, ColumnExporters, ContentExporters, RowExporters } from '@unlayer/types';
4
+
5
+ export declare const exporters: {
6
+ Button: ButtonExporters;
7
+ Divider: DividerExporters;
8
+ Heading: HeadingExporters;
9
+ Html: HtmlExporters;
10
+ Image: ImageExporters;
11
+ Menu: MenuExporters;
12
+ Paragraph: ParagraphExporters;
13
+ Social: SocialExporters;
14
+ Table: TableExporters;
15
+ Text: TextExporters;
16
+ Timer: TimerExporters;
17
+ Video: VideoExporters;
18
+ Body: BodyExporters;
19
+ Column: ColumnExporters;
20
+ Content: ContentExporters;
21
+ Row: RowExporters;
22
+ };
23
+ export declare const heads: Record<string, any>;
24
+
25
+ export declare const ButtonExporters: ButtonExporters;
26
+ export declare const DividerExporters: DividerExporters;
27
+ export declare const HeadingExporters: HeadingExporters;
28
+ export declare const HtmlExporters: HtmlExporters;
29
+ export declare const ImageExporters: ImageExporters;
30
+ export declare const MenuExporters: MenuExporters;
31
+ export declare const ParagraphExporters: ParagraphExporters;
32
+ export declare const SocialExporters: SocialExporters;
33
+ export declare const TableExporters: TableExporters;
34
+ export declare const TextExporters: TextExporters;
35
+ export declare const TimerExporters: TimerExporters;
36
+ export declare const VideoExporters: VideoExporters;
37
+ export declare const BodyExporters: BodyExporters;
38
+ export declare const ColumnExporters: ColumnExporters;
39
+ export declare const ContentExporters: ContentExporters;
40
+ export declare const RowExporters: RowExporters;
41
+
42
+ export declare const ButtonHead: Record<string, any>;
43
+ export declare const HeadingHead: Record<string, any>;
44
+ export declare const ImageHead: Record<string, any>;
45
+ export declare const ParagraphHead: Record<string, any>;
46
+ export declare const TableHead: Record<string, any>;
47
+ export declare const TextHead: Record<string, any>;
48
+ export declare const TimerHead: Record<string, any>;
49
+ export declare const VideoHead: Record<string, any>;
50
+ export declare const BodyHead: Record<string, any>;
51
+ export declare const ColumnHead: Record<string, any>;
52
+ export declare const ContentHead: Record<string, any>;
53
+ export declare const RowHead: Record<string, any>;
54
+
55
+ export declare const schemaVersion: number;
56
+
57
+ export declare const ButtonDefaults: Record<string, any>;
58
+ export declare const DividerDefaults: Record<string, any>;
59
+ export declare const HeadingDefaults: Record<string, any>;
60
+ export declare const HtmlDefaults: Record<string, any>;
61
+ export declare const ImageDefaults: Record<string, any>;
62
+ export declare const MenuDefaults: Record<string, any>;
63
+ export declare const ParagraphDefaults: Record<string, any>;
64
+ export declare const SocialDefaults: Record<string, any>;
65
+ export declare const TableDefaults: Record<string, any>;
66
+ export declare const TextDefaults: Record<string, any>;
67
+ export declare const TimerDefaults: Record<string, any>;
68
+ export declare const VideoDefaults: Record<string, any>;
69
+ export declare const BodyDefaults: Record<string, any>;
70
+ export declare const ColumnDefaults: Record<string, any>;
71
+ export declare const ContentDefaults: Record<string, any>;
72
+ export declare const RowDefaults: Record<string, any>;
73
+