@getblock/common 0.1.77

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 (38) hide show
  1. package/README.md +16 -0
  2. package/dist/cn.d600ca34.js +35 -0
  3. package/dist/en.101a7f88.js +35 -0
  4. package/dist/getblock-common.es.ts +4845 -0
  5. package/dist/getblock-common.umd.ts +5 -0
  6. package/dist/index.d.ts +1 -0
  7. package/dist/src/components/announcement/Announcement.vue.d.ts +63 -0
  8. package/dist/src/components/announcement/locales/cn.d.ts +5 -0
  9. package/dist/src/components/announcement/locales/en.d.ts +5 -0
  10. package/dist/src/components/blackFridayAnnouncement/BlackFridayAnnouncement.vue.d.ts +77 -0
  11. package/dist/src/components/blackFridayAnnouncement/locales/cn.d.ts +6 -0
  12. package/dist/src/components/blackFridayAnnouncement/locales/en.d.ts +6 -0
  13. package/dist/src/components/contactForm/locales/cn.d.ts +2 -0
  14. package/dist/src/components/contactForm/locales/en.d.ts +2 -0
  15. package/dist/src/components/contactForm/staticData/nodes.d.ts +6 -0
  16. package/dist/src/components/contactForm/type/shared.d.ts +56 -0
  17. package/dist/src/components/contactForm/utils/useTexts.d.ts +36 -0
  18. package/dist/src/components/contactModal/locales/cn.d.ts +31 -0
  19. package/dist/src/components/contactModal/locales/en.d.ts +31 -0
  20. package/dist/src/components/cookie/Cookie.vue.d.ts +284 -0
  21. package/dist/src/components/cookie/locales/cn.d.ts +42 -0
  22. package/dist/src/components/cookie/locales/en.d.ts +42 -0
  23. package/dist/src/components/enterpriseModal/locales/cn.d.ts +33 -0
  24. package/dist/src/components/enterpriseModal/locales/en.d.ts +33 -0
  25. package/dist/src/components/enterpriseModal/utils/utils.d.ts +2 -0
  26. package/dist/src/components/footer/locales/cn.d.ts +66 -0
  27. package/dist/src/components/footer/locales/en.d.ts +66 -0
  28. package/dist/src/components/index.d.ts +10 -0
  29. package/dist/src/components/infoModal/InfoModal.vue.d.ts +66 -0
  30. package/dist/src/components/navbar/Navbar.vue.d.ts +324 -0
  31. package/dist/src/components/optionalAnnouncement/OptionalAnnouncement.vue.d.ts +25 -0
  32. package/dist/src/components/optionalAnnouncement/locales/cn.d.ts +5 -0
  33. package/dist/src/components/optionalAnnouncement/locales/en.d.ts +5 -0
  34. package/dist/src/constants/pathNames.d.ts +27 -0
  35. package/dist/src/vite-env.d.ts +9 -0
  36. package/dist/style.css +1 -0
  37. package/dist/vite.svg +1 -0
  38. package/package.json +77 -0
@@ -0,0 +1,6 @@
1
+ export declare const nodes: {
2
+ generalText: string;
3
+ additionalText: string;
4
+ checked: boolean;
5
+ value: string;
6
+ }[];
@@ -0,0 +1,56 @@
1
+ export declare type LocaleType = 'en' | 'cn';
2
+ export declare type ColorModeType = 'light' | 'dark';
3
+ declare type ObjectRequestType = 'sales' | 'partnership' | 'support';
4
+ export declare type InputType = 'email' | 'name' | 'company';
5
+ export declare type PageOpenModalType = 'support' | 'partnership' | 'other';
6
+ export interface ITabItem {
7
+ value: ObjectRequestType;
8
+ text: string;
9
+ }
10
+ export declare type InputValuesType = {
11
+ [key in InputType]: string;
12
+ };
13
+ export declare type InputValuesErrorType = {
14
+ [key in Exclude<InputType, 'company'>]: boolean;
15
+ };
16
+ export interface IText {
17
+ title: string;
18
+ theme: string;
19
+ telegram: string;
20
+ or: string;
21
+ objectRequest: {
22
+ sales: string;
23
+ partnership: string;
24
+ support: string;
25
+ };
26
+ email: string;
27
+ name: string;
28
+ company: string;
29
+ chainsOfInterest: {
30
+ label: string;
31
+ placeholder: string;
32
+ };
33
+ textMessage: string;
34
+ button: string;
35
+ footer: {
36
+ text: string;
37
+ link: string;
38
+ };
39
+ errors: {
40
+ message: string;
41
+ name: string;
42
+ email: {
43
+ empty: string;
44
+ noValid: string;
45
+ };
46
+ };
47
+ }
48
+ export interface IAppealMessage {
49
+ email: string;
50
+ subject: ObjectRequestType;
51
+ name: string;
52
+ company: string;
53
+ message: string;
54
+ selectedNodes?: string[];
55
+ }
56
+ export {};
@@ -0,0 +1,36 @@
1
+ import { LocaleType } from '../../../components/contactForm/type/shared';
2
+ export declare function useTexts(): {
3
+ getText: import("vue").ComputedRef<{
4
+ title: string;
5
+ theme: string;
6
+ telegram: string;
7
+ or: string;
8
+ objectRequest: {
9
+ sales: string;
10
+ partnership: string;
11
+ support: string;
12
+ };
13
+ email: string;
14
+ name: string;
15
+ company: string;
16
+ chainsOfInterest: {
17
+ label: string;
18
+ placeholder: string;
19
+ };
20
+ textMessage: string;
21
+ button: string;
22
+ footer: {
23
+ text: string;
24
+ link: string;
25
+ };
26
+ errors: {
27
+ message: string;
28
+ name: string;
29
+ email: {
30
+ empty: string;
31
+ noValid: string;
32
+ };
33
+ };
34
+ } | undefined>;
35
+ loadTexts: (locale: LocaleType) => Promise<void>;
36
+ };
@@ -0,0 +1,31 @@
1
+ declare const _default: {
2
+ title: string;
3
+ 'full-name': {
4
+ title: string;
5
+ placeholder: string;
6
+ };
7
+ email: {
8
+ title: string;
9
+ placeholder: string;
10
+ };
11
+ subject: {
12
+ title: string;
13
+ placeholder: string;
14
+ };
15
+ subjects: {
16
+ 'customer-support': string;
17
+ 'tech-support': string;
18
+ sales: string;
19
+ other: string;
20
+ };
21
+ 'text-message': {
22
+ title: string;
23
+ placeholder: string;
24
+ };
25
+ button: string;
26
+ 'privacy-policy': {
27
+ description: string;
28
+ policy: string;
29
+ };
30
+ };
31
+ export default _default;
@@ -0,0 +1,31 @@
1
+ declare const _default: {
2
+ title: string;
3
+ 'full-name': {
4
+ title: string;
5
+ placeholder: string;
6
+ };
7
+ email: {
8
+ title: string;
9
+ placeholder: string;
10
+ };
11
+ subject: {
12
+ title: string;
13
+ placeholder: string;
14
+ };
15
+ subjects: {
16
+ 'customer-support': string;
17
+ 'tech-support': string;
18
+ sales: string;
19
+ other: string;
20
+ };
21
+ 'text-message': {
22
+ title: string;
23
+ placeholder: string;
24
+ };
25
+ button: string;
26
+ 'privacy-policy': {
27
+ description: string;
28
+ policy: string;
29
+ };
30
+ };
31
+ export default _default;
@@ -0,0 +1,284 @@
1
+ /// <reference types="vite/client" />
2
+ declare type IDType = 'strictly' | 'functional' | 'statistics' | 'marketing';
3
+ interface Cookie {
4
+ id: IDType;
5
+ checked: boolean;
6
+ }
7
+ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ mainProject: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ locale: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ acceptCookie: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ }>, {
21
+ emits: (event: "onAcceptCookie" | "onDisplayCookieManage" | "onRejectCookie", ...args: any[]) => void;
22
+ props: import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
23
+ mainProject: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ locale: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ };
31
+ acceptCookie: {
32
+ type: BooleanConstructor;
33
+ default: boolean;
34
+ };
35
+ }>> & Readonly<{
36
+ onOnAcceptCookie?: ((...args: any[]) => any) | undefined;
37
+ onOnDisplayCookieManage?: ((...args: any[]) => any) | undefined;
38
+ onOnRejectCookie?: ((...args: any[]) => any) | undefined;
39
+ }> & {}>;
40
+ cookieManageDisplay: import("vue").Ref<boolean, boolean>;
41
+ cookie: import("vue").Ref<{
42
+ id: IDType;
43
+ checked: boolean;
44
+ }[], Cookie[] | {
45
+ id: IDType;
46
+ checked: boolean;
47
+ }[]>;
48
+ localeEn: import("vue").ComputedRef<boolean>;
49
+ target: import("vue").ComputedRef<"_self" | "_blank">;
50
+ cnLink: import("vue").ComputedRef<"" | "cn/">;
51
+ text: import("vue").ComputedRef<{
52
+ banner: {
53
+ description: {
54
+ first: string;
55
+ second: string;
56
+ third: string;
57
+ };
58
+ links: {
59
+ 'privacy-policy': string;
60
+ terms: string;
61
+ };
62
+ button: {
63
+ first: string;
64
+ second: string;
65
+ };
66
+ };
67
+ manage: {
68
+ title: string;
69
+ list: {
70
+ strictly: {
71
+ title: string;
72
+ description: string;
73
+ };
74
+ functional: {
75
+ title: string;
76
+ description: string;
77
+ };
78
+ statistics: {
79
+ title: string;
80
+ description: string;
81
+ };
82
+ marketing: {
83
+ title: string;
84
+ description: string;
85
+ };
86
+ };
87
+ 'accept-part': string;
88
+ accept: string;
89
+ reject: string;
90
+ };
91
+ } | {
92
+ banner: {
93
+ description: {
94
+ first: string;
95
+ second: string;
96
+ third: string;
97
+ };
98
+ links: {
99
+ 'privacy-policy': string;
100
+ terms: string;
101
+ };
102
+ button: {
103
+ first: string;
104
+ second: string;
105
+ };
106
+ };
107
+ manage: {
108
+ title: string;
109
+ list: {
110
+ strictly: {
111
+ title: string;
112
+ description: string;
113
+ };
114
+ functional: {
115
+ title: string;
116
+ description: string;
117
+ };
118
+ statistics: {
119
+ title: string;
120
+ description: string;
121
+ };
122
+ marketing: {
123
+ title: string;
124
+ description: string;
125
+ };
126
+ };
127
+ 'accept-part': string;
128
+ accept: string;
129
+ reject: string;
130
+ };
131
+ }>;
132
+ displayCookieManage: (value: boolean) => void;
133
+ handleAcceptCookie: () => void;
134
+ handleRejectCookie: () => void;
135
+ readonly GetBlockUIIcon: import("vue").DefineComponent<{
136
+ iconName: {
137
+ type: StringConstructor;
138
+ required: true;
139
+ };
140
+ colorType: {
141
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps>;
142
+ default: string;
143
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps) => boolean;
144
+ };
145
+ sizeType: {
146
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps>;
147
+ default: string;
148
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps) => boolean;
149
+ };
150
+ }, {
151
+ props: any;
152
+ imgSize: import("vue").ComputedRef<number>;
153
+ classObject: import("vue").ComputedRef<object>;
154
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
155
+ iconName: {
156
+ type: StringConstructor;
157
+ required: true;
158
+ };
159
+ colorType: {
160
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps>;
161
+ default: string;
162
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps) => boolean;
163
+ };
164
+ sizeType: {
165
+ type: import("vue").PropType<import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps>;
166
+ default: string;
167
+ validator: (value: import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps) => boolean;
168
+ };
169
+ }>>, {
170
+ colorType: import("@getblock/core/dist/components/icon/Icon.types").IconColorTypeProps;
171
+ sizeType: import("@getblock/core/dist/components/icon/Icon.types").IconSizeTypeProps;
172
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
173
+ readonly GetBlockUIToggle: import("vue").DefineComponent<{
174
+ disabled: {
175
+ type: BooleanConstructor;
176
+ default: boolean;
177
+ };
178
+ selected: {
179
+ type: BooleanConstructor;
180
+ default: boolean;
181
+ };
182
+ }, {
183
+ emit: (event: "changeSelected", ...args: any[]) => void;
184
+ props: any;
185
+ classObject: import("vue").ComputedRef<object>;
186
+ handleChange: () => void;
187
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changeSelected"[], "changeSelected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
188
+ disabled: {
189
+ type: BooleanConstructor;
190
+ default: boolean;
191
+ };
192
+ selected: {
193
+ type: BooleanConstructor;
194
+ default: boolean;
195
+ };
196
+ }>> & {
197
+ onChangeSelected?: ((...args: any[]) => any) | undefined;
198
+ }, {
199
+ disabled: boolean;
200
+ selected: boolean;
201
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
202
+ readonly GetBlockUIButton: import("vue").DefineComponent<{
203
+ disabled: {
204
+ type: BooleanConstructor;
205
+ default: boolean;
206
+ };
207
+ mainType: {
208
+ type: import("vue").PropType<import("@getblock/core/dist/components/button/Button.types").ButtonMainTypeProps>;
209
+ default: string;
210
+ validator: (value: import("@getblock/core/dist/components/button/Button.types").ButtonMainTypeProps) => boolean;
211
+ };
212
+ colorType: {
213
+ type: import("vue").PropType<import("@getblock/core/dist/components/button/Button.types").ButtonColorTypeProps>;
214
+ default: string;
215
+ validator: (value: import("@getblock/core/dist/components/button/Button.types").ButtonColorTypeProps) => boolean;
216
+ };
217
+ sizeType: {
218
+ type: import("vue").PropType<import("@getblock/core/dist/components/button/Button.types").ButtonSizeTypeProps>;
219
+ default: string;
220
+ validator: (value: import("@getblock/core/dist/components/button/Button.types").ButtonSizeTypeProps) => boolean;
221
+ };
222
+ iconButton: {
223
+ type: BooleanConstructor;
224
+ default: boolean;
225
+ };
226
+ }, {
227
+ props: any;
228
+ classObject: import("vue").ComputedRef<object>;
229
+ readonly button: CSSModuleClasses;
230
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
231
+ disabled: {
232
+ type: BooleanConstructor;
233
+ default: boolean;
234
+ };
235
+ mainType: {
236
+ type: import("vue").PropType<import("@getblock/core/dist/components/button/Button.types").ButtonMainTypeProps>;
237
+ default: string;
238
+ validator: (value: import("@getblock/core/dist/components/button/Button.types").ButtonMainTypeProps) => boolean;
239
+ };
240
+ colorType: {
241
+ type: import("vue").PropType<import("@getblock/core/dist/components/button/Button.types").ButtonColorTypeProps>;
242
+ default: string;
243
+ validator: (value: import("@getblock/core/dist/components/button/Button.types").ButtonColorTypeProps) => boolean;
244
+ };
245
+ sizeType: {
246
+ type: import("vue").PropType<import("@getblock/core/dist/components/button/Button.types").ButtonSizeTypeProps>;
247
+ default: string;
248
+ validator: (value: import("@getblock/core/dist/components/button/Button.types").ButtonSizeTypeProps) => boolean;
249
+ };
250
+ iconButton: {
251
+ type: BooleanConstructor;
252
+ default: boolean;
253
+ };
254
+ }>>, {
255
+ colorType: import("@getblock/core/dist/components/button/Button.types").ButtonColorTypeProps;
256
+ sizeType: import("@getblock/core/dist/components/button/Button.types").ButtonSizeTypeProps;
257
+ disabled: boolean;
258
+ mainType: import("@getblock/core/dist/components/button/Button.types").ButtonMainTypeProps;
259
+ iconButton: boolean;
260
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
261
+ readonly cookieStyle: CSSModuleClasses;
262
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onAcceptCookie" | "onDisplayCookieManage" | "onRejectCookie")[], "onAcceptCookie" | "onDisplayCookieManage" | "onRejectCookie", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
263
+ mainProject: {
264
+ type: BooleanConstructor;
265
+ default: boolean;
266
+ };
267
+ locale: {
268
+ type: StringConstructor;
269
+ default: string;
270
+ };
271
+ acceptCookie: {
272
+ type: BooleanConstructor;
273
+ default: boolean;
274
+ };
275
+ }>> & Readonly<{
276
+ onOnAcceptCookie?: ((...args: any[]) => any) | undefined;
277
+ onOnDisplayCookieManage?: ((...args: any[]) => any) | undefined;
278
+ onOnRejectCookie?: ((...args: any[]) => any) | undefined;
279
+ }>, {
280
+ locale: string;
281
+ mainProject: boolean;
282
+ acceptCookie: boolean;
283
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
284
+ export default _sfc_main;
@@ -0,0 +1,42 @@
1
+ declare const _default: {
2
+ banner: {
3
+ description: {
4
+ first: string;
5
+ second: string;
6
+ third: string;
7
+ };
8
+ links: {
9
+ 'privacy-policy': string;
10
+ terms: string;
11
+ };
12
+ button: {
13
+ first: string;
14
+ second: string;
15
+ };
16
+ };
17
+ manage: {
18
+ title: string;
19
+ list: {
20
+ strictly: {
21
+ title: string;
22
+ description: string;
23
+ };
24
+ functional: {
25
+ title: string;
26
+ description: string;
27
+ };
28
+ statistics: {
29
+ title: string;
30
+ description: string;
31
+ };
32
+ marketing: {
33
+ title: string;
34
+ description: string;
35
+ };
36
+ };
37
+ 'accept-part': string;
38
+ accept: string;
39
+ reject: string;
40
+ };
41
+ };
42
+ export default _default;
@@ -0,0 +1,42 @@
1
+ declare const _default: {
2
+ banner: {
3
+ description: {
4
+ first: string;
5
+ second: string;
6
+ third: string;
7
+ };
8
+ links: {
9
+ 'privacy-policy': string;
10
+ terms: string;
11
+ };
12
+ button: {
13
+ first: string;
14
+ second: string;
15
+ };
16
+ };
17
+ manage: {
18
+ title: string;
19
+ list: {
20
+ strictly: {
21
+ title: string;
22
+ description: string;
23
+ };
24
+ functional: {
25
+ title: string;
26
+ description: string;
27
+ };
28
+ statistics: {
29
+ title: string;
30
+ description: string;
31
+ };
32
+ marketing: {
33
+ title: string;
34
+ description: string;
35
+ };
36
+ };
37
+ 'accept-part': string;
38
+ accept: string;
39
+ reject: string;
40
+ };
41
+ };
42
+ export default _default;
@@ -0,0 +1,33 @@
1
+ declare const _default: {
2
+ title: string;
3
+ cuAmount: string;
4
+ accessTokens: string;
5
+ premiumSupport: string;
6
+ advancedStatistics: string;
7
+ next: string;
8
+ companyName: string;
9
+ companyNamePlaceholder: string;
10
+ email: string;
11
+ emailPlaceholder: string;
12
+ telegram: string;
13
+ telegramPlaceholder: string;
14
+ textMessage: string;
15
+ textMessagePlaceholder: string;
16
+ sendRequest: string;
17
+ privacy: {
18
+ '1': string;
19
+ '2': string;
20
+ };
21
+ success: {
22
+ title: string;
23
+ description: string;
24
+ };
25
+ tooltip: {
26
+ support: string;
27
+ statistics: string;
28
+ };
29
+ continue: string;
30
+ notEmptyField: string;
31
+ invalidEmail: string;
32
+ };
33
+ export default _default;
@@ -0,0 +1,33 @@
1
+ declare const _default: {
2
+ title: string;
3
+ cuAmount: string;
4
+ accessTokens: string;
5
+ premiumSupport: string;
6
+ advancedStatistics: string;
7
+ next: string;
8
+ companyName: string;
9
+ companyNamePlaceholder: string;
10
+ email: string;
11
+ emailPlaceholder: string;
12
+ telegram: string;
13
+ telegramPlaceholder: string;
14
+ textMessage: string;
15
+ textMessagePlaceholder: string;
16
+ sendRequest: string;
17
+ privacy: {
18
+ '1': string;
19
+ '2': string;
20
+ };
21
+ success: {
22
+ title: string;
23
+ description: string;
24
+ };
25
+ tooltip: {
26
+ support: string;
27
+ statistics: string;
28
+ };
29
+ continue: string;
30
+ notEmptyField: string;
31
+ invalidEmail: string;
32
+ };
33
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export declare const isNoValidEmail: (value: string) => boolean;
2
+ export declare const isValidName: (value: string) => boolean;
@@ -0,0 +1,66 @@
1
+ declare const _default: {
2
+ product: {
3
+ title: string;
4
+ 'shared-nodes': string;
5
+ 'dedicated-nodes': string;
6
+ 'node-cluster': string;
7
+ tracker: string;
8
+ pricing: string;
9
+ 'enterprise-solutions': string;
10
+ faucet: string;
11
+ sla: string;
12
+ };
13
+ chains: {
14
+ title: string;
15
+ eth: string;
16
+ bsc: string;
17
+ matic: string;
18
+ sol: string;
19
+ base: string;
20
+ arb: string;
21
+ trx: string;
22
+ avax: string;
23
+ op: string;
24
+ };
25
+ explorers: {
26
+ title: string;
27
+ 'blockchain-explorer': string;
28
+ 'blockchain-explorer-docs': string;
29
+ 'blockchain-explorer-partners': string;
30
+ };
31
+ 'for-developers': {
32
+ title: string;
33
+ documentation: string;
34
+ 'nodes-methods': string;
35
+ 'get-started': string;
36
+ guides: string;
37
+ status: string;
38
+ };
39
+ company: {
40
+ title: string;
41
+ about: string;
42
+ blog: string;
43
+ contact: string;
44
+ faq: string;
45
+ careers: string;
46
+ };
47
+ partnerships: {
48
+ title: string;
49
+ marketplace: string;
50
+ 'media-kit': string;
51
+ 'affiliate-program': string;
52
+ 'ambassadors-program': string;
53
+ 'near-startup-program': string;
54
+ };
55
+ 'legal-documents': {
56
+ title: string;
57
+ 'terms-of-service': string;
58
+ 'privacy-policy': string;
59
+ 'cookie-policy': string;
60
+ 'subscription-policy': string;
61
+ 'affiliate-policy': string;
62
+ 'ambassador-program-terms-of-service': string;
63
+ };
64
+ 'all-rights-reserved': string;
65
+ };
66
+ export default _default;