poro-editor 1.0.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.
@@ -0,0 +1,5 @@
1
+ export default AlignMenu;
2
+ declare function AlignMenu({ editor, children }: {
3
+ editor: any;
4
+ children: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export default BubbleMenuContent;
2
+ declare function BubbleMenuContent({ editor, config }: {
3
+ editor: any;
4
+ config: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ export default ColorPickerButton;
2
+ declare function ColorPickerButton({ editor, type, title }: {
3
+ editor: any;
4
+ type: any;
5
+ title: any;
6
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export const CustomHeading: import('@tiptap/core').Node<import('@tiptap/extension-heading').HeadingOptions, any>;
2
+ export default CustomHeading;
@@ -0,0 +1,3 @@
1
+ import { Node } from '@tiptap/core';
2
+ export const CustomImage: Node<any, any>;
3
+ export default CustomImage;
@@ -0,0 +1,4 @@
1
+ export default EmojiPicker;
2
+ declare function EmojiPicker({ editor }: {
3
+ editor: any;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export default FloatingMenuContent;
2
+ declare function FloatingMenuContent({ editor, config }: {
3
+ editor: any;
4
+ config: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export default FontSizeSelector;
2
+ declare function FontSizeSelector({ editor }: {
3
+ editor: any;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export default HeadingSelector;
2
+ declare function HeadingSelector({ editor }: {
3
+ editor: any;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export default HtmlPreview;
2
+ declare function HtmlPreview({ editor, children }: {
3
+ editor: any;
4
+ children: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export default ImageMenu;
2
+ declare function ImageMenu({ editor, children }: {
3
+ editor: any;
4
+ children: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { Extension } from '@tiptap/core';
2
+ export const ImagePaste: Extension<any, any>;
3
+ export default ImagePaste;
@@ -0,0 +1,6 @@
1
+ export default ImagePlaceholder;
2
+ declare function ImagePlaceholder({ status, error, onRetry }: {
3
+ status: any;
4
+ error: any;
5
+ onRetry: any;
6
+ }): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,4 @@
1
+ export default ImageToolbar;
2
+ declare function ImageToolbar({ editor }: {
3
+ editor: any;
4
+ }): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,8 @@
1
+ export default ImageView;
2
+ declare function ImageView({ node, updateAttributes, deleteNode, selected, editor }: {
3
+ node: any;
4
+ updateAttributes: any;
5
+ deleteNode: any;
6
+ selected: any;
7
+ editor: any;
8
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export default LinkButton;
2
+ declare function LinkButton({ editor }: {
3
+ editor: any;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export function MenuBar({ editor, config }: {
2
+ editor: any;
3
+ config: any;
4
+ }): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,8 @@
1
+ export default MenuButton;
2
+ declare function MenuButton({ onClick, disabled, isActive, icon, title }: {
3
+ onClick: any;
4
+ disabled: any;
5
+ isActive: any;
6
+ icon: any;
7
+ title: any;
8
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { Node } from '@tiptap/core';
2
+ export const OutlineExtension: Node<any, any>;
3
+ export default OutlineExtension;
@@ -0,0 +1,7 @@
1
+ export default OutlineNodeView;
2
+ declare function OutlineNodeView({ editor, node, deleteNode, selected }: {
3
+ editor: any;
4
+ node: any;
5
+ deleteNode: any;
6
+ selected: any;
7
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { Extension } from '@tiptap/core';
2
+ export const PasteMarkdown: Extension<any, any>;
@@ -0,0 +1,5 @@
1
+ export default SourceCodeViewer;
2
+ declare function SourceCodeViewer({ editor, children }: {
3
+ editor: any;
4
+ children: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export default TableBubbleMenu;
2
+ declare function TableBubbleMenu({ editor }: {
3
+ editor: any;
4
+ }): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,5 @@
1
+ export default TableMenu;
2
+ declare function TableMenu({ editor, children }: {
3
+ editor: any;
4
+ children: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import { Node } from '@tiptap/core';
2
+ export default VariableExtension;
3
+ declare const VariableExtension: Node<any, any>;
@@ -0,0 +1,4 @@
1
+ export default VariableNodeView;
2
+ declare function VariableNodeView({ node }: {
3
+ node: any;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export default VariablePanel;
2
+ declare function VariablePanel({ editor, children }: {
3
+ editor: any;
4
+ children: any;
5
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,27 @@
1
+ export const MENU_BAR_ITEMS: string[];
2
+ export const BUBBLE_MENU_ITEMS: string[];
3
+ export const FLOATING_MENU_ITEMS: string[];
4
+ export namespace DEFAULT_UPLOAD_CONFIG {
5
+ let uploadUrl: string;
6
+ let fieldName: string;
7
+ namespace headers {
8
+ let lang: string;
9
+ }
10
+ let withCredentials: boolean;
11
+ function responseParser(data: any): any;
12
+ let compress: boolean;
13
+ let compressQuality: number;
14
+ let compressMaxWidth: number;
15
+ let compressMaxHeight: number;
16
+ let compressType: string;
17
+ }
18
+ export const DEFAULT_EXPORT_FORMATS: string[];
19
+ export namespace DEFAULT_CONFIG {
20
+ export { MENU_BAR_ITEMS as menuBar };
21
+ export { BUBBLE_MENU_ITEMS as bubbleMenu };
22
+ export { FLOATING_MENU_ITEMS as floatingMenu };
23
+ export { DEFAULT_UPLOAD_CONFIG as upload };
24
+ export let theme: string;
25
+ export let locale: string;
26
+ export { DEFAULT_EXPORT_FORMATS as exportFormats };
27
+ }
@@ -0,0 +1,14 @@
1
+ export namespace defaultUploadConfig {
2
+ let uploadUrl: string;
3
+ let fieldName: string;
4
+ let headers: {};
5
+ let withCredentials: boolean;
6
+ function responseParser(data: any): any;
7
+ let compress: boolean;
8
+ let compressQuality: number;
9
+ let compressMaxWidth: number;
10
+ let compressMaxHeight: number;
11
+ let compressType: string;
12
+ }
13
+ export function compressImage(file: any, config?: {}): Promise<any>;
14
+ export function uploadImage(file: any, config?: {}): Promise<any>;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ export const EditorContext: React.Context<null>;
3
+ export default Tiptap;
4
+ export function Tiptap({ content, onChange, config }: {
5
+ content?: string | undefined;
6
+ onChange: any;
7
+ config: any;
8
+ }): import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,452 @@
1
+ export namespace zh {
2
+ export namespace toolbar {
3
+ let undo: string;
4
+ let redo: string;
5
+ let bold: string;
6
+ let italic: string;
7
+ let underline: string;
8
+ let strike: string;
9
+ let code: string;
10
+ let heading: string;
11
+ let fontSize: string;
12
+ let textColor: string;
13
+ let bgColor: string;
14
+ let bulletList: string;
15
+ let orderedList: string;
16
+ let codeBlock: string;
17
+ let blockquote: string;
18
+ let link: string;
19
+ let horizontalRule: string;
20
+ let align: string;
21
+ let alignLeft: string;
22
+ let alignCenter: string;
23
+ let alignRight: string;
24
+ let alignJustify: string;
25
+ let image: string;
26
+ let table: string;
27
+ let hardBreak: string;
28
+ let variable: string;
29
+ let sourceCode: string;
30
+ let htmlPreview: string;
31
+ let clearFormat: string;
32
+ }
33
+ export namespace image_1 {
34
+ export let upload: string;
35
+ export let url: string;
36
+ export let uploadPlaceholder: string;
37
+ export let uploadHint: string;
38
+ export let urlPlaceholder: string;
39
+ export let insert: string;
40
+ export let width: string;
41
+ export let small: string;
42
+ export let medium: string;
43
+ export let large: string;
44
+ export let auto: string;
45
+ let align_1: string;
46
+ export { align_1 as align };
47
+ export let float: string;
48
+ export let floatLeft: string;
49
+ export let floatRight: string;
50
+ export let customSize: string;
51
+ export let altText: string;
52
+ export let altPlaceholder: string;
53
+ let _delete: string;
54
+ export { _delete as delete };
55
+ export let retry: string;
56
+ export let uploading: string;
57
+ export let uploadFailed: string;
58
+ }
59
+ export { image_1 as image };
60
+ export namespace table_1 {
61
+ let insertTable: string;
62
+ let insertRowAbove: string;
63
+ let insertRowBelow: string;
64
+ let insertColLeft: string;
65
+ let insertColRight: string;
66
+ let deleteRow: string;
67
+ let deleteCol: string;
68
+ let mergeCells: string;
69
+ let splitCell: string;
70
+ let deleteTable: string;
71
+ let rows: string;
72
+ let cols: string;
73
+ }
74
+ export { table_1 as table };
75
+ export namespace link_1 {
76
+ export let placeholder: string;
77
+ let insert_1: string;
78
+ export { insert_1 as insert };
79
+ export let remove: string;
80
+ }
81
+ export { link_1 as link };
82
+ export namespace sourceCode_1 {
83
+ let html: string;
84
+ let json: string;
85
+ let markdown: string;
86
+ let text: string;
87
+ }
88
+ export { sourceCode_1 as sourceCode };
89
+ export namespace variable_1 {
90
+ let title: string;
91
+ let avatar: string;
92
+ let nickname: string;
93
+ }
94
+ export { variable_1 as variable };
95
+ export namespace outline {
96
+ let title_1: string;
97
+ export { title_1 as title };
98
+ export let empty: string;
99
+ }
100
+ }
101
+ export namespace en {
102
+ export namespace toolbar_1 {
103
+ let undo_1: string;
104
+ export { undo_1 as undo };
105
+ let redo_1: string;
106
+ export { redo_1 as redo };
107
+ let bold_1: string;
108
+ export { bold_1 as bold };
109
+ let italic_1: string;
110
+ export { italic_1 as italic };
111
+ let underline_1: string;
112
+ export { underline_1 as underline };
113
+ let strike_1: string;
114
+ export { strike_1 as strike };
115
+ let code_1: string;
116
+ export { code_1 as code };
117
+ let heading_1: string;
118
+ export { heading_1 as heading };
119
+ let fontSize_1: string;
120
+ export { fontSize_1 as fontSize };
121
+ let textColor_1: string;
122
+ export { textColor_1 as textColor };
123
+ let bgColor_1: string;
124
+ export { bgColor_1 as bgColor };
125
+ let bulletList_1: string;
126
+ export { bulletList_1 as bulletList };
127
+ let orderedList_1: string;
128
+ export { orderedList_1 as orderedList };
129
+ let codeBlock_1: string;
130
+ export { codeBlock_1 as codeBlock };
131
+ let blockquote_1: string;
132
+ export { blockquote_1 as blockquote };
133
+ let link_2: string;
134
+ export { link_2 as link };
135
+ let horizontalRule_1: string;
136
+ export { horizontalRule_1 as horizontalRule };
137
+ let align_2: string;
138
+ export { align_2 as align };
139
+ let alignLeft_1: string;
140
+ export { alignLeft_1 as alignLeft };
141
+ let alignCenter_1: string;
142
+ export { alignCenter_1 as alignCenter };
143
+ let alignRight_1: string;
144
+ export { alignRight_1 as alignRight };
145
+ let alignJustify_1: string;
146
+ export { alignJustify_1 as alignJustify };
147
+ let image_2: string;
148
+ export { image_2 as image };
149
+ let table_2: string;
150
+ export { table_2 as table };
151
+ let hardBreak_1: string;
152
+ export { hardBreak_1 as hardBreak };
153
+ let variable_2: string;
154
+ export { variable_2 as variable };
155
+ let sourceCode_2: string;
156
+ export { sourceCode_2 as sourceCode };
157
+ let htmlPreview_1: string;
158
+ export { htmlPreview_1 as htmlPreview };
159
+ let clearFormat_1: string;
160
+ export { clearFormat_1 as clearFormat };
161
+ }
162
+ export { toolbar_1 as toolbar };
163
+ export namespace image_3 {
164
+ let upload_1: string;
165
+ export { upload_1 as upload };
166
+ let url_1: string;
167
+ export { url_1 as url };
168
+ let uploadPlaceholder_1: string;
169
+ export { uploadPlaceholder_1 as uploadPlaceholder };
170
+ let uploadHint_1: string;
171
+ export { uploadHint_1 as uploadHint };
172
+ let urlPlaceholder_1: string;
173
+ export { urlPlaceholder_1 as urlPlaceholder };
174
+ let insert_2: string;
175
+ export { insert_2 as insert };
176
+ let width_1: string;
177
+ export { width_1 as width };
178
+ let small_1: string;
179
+ export { small_1 as small };
180
+ let medium_1: string;
181
+ export { medium_1 as medium };
182
+ let large_1: string;
183
+ export { large_1 as large };
184
+ let auto_1: string;
185
+ export { auto_1 as auto };
186
+ let align_3: string;
187
+ export { align_3 as align };
188
+ let float_1: string;
189
+ export { float_1 as float };
190
+ let floatLeft_1: string;
191
+ export { floatLeft_1 as floatLeft };
192
+ let floatRight_1: string;
193
+ export { floatRight_1 as floatRight };
194
+ let customSize_1: string;
195
+ export { customSize_1 as customSize };
196
+ let altText_1: string;
197
+ export { altText_1 as altText };
198
+ let altPlaceholder_1: string;
199
+ export { altPlaceholder_1 as altPlaceholder };
200
+ let _delete_1: string;
201
+ export { _delete_1 as delete };
202
+ let retry_1: string;
203
+ export { retry_1 as retry };
204
+ let uploading_1: string;
205
+ export { uploading_1 as uploading };
206
+ let uploadFailed_1: string;
207
+ export { uploadFailed_1 as uploadFailed };
208
+ }
209
+ export { image_3 as image };
210
+ export namespace table_3 {
211
+ let insertTable_1: string;
212
+ export { insertTable_1 as insertTable };
213
+ let insertRowAbove_1: string;
214
+ export { insertRowAbove_1 as insertRowAbove };
215
+ let insertRowBelow_1: string;
216
+ export { insertRowBelow_1 as insertRowBelow };
217
+ let insertColLeft_1: string;
218
+ export { insertColLeft_1 as insertColLeft };
219
+ let insertColRight_1: string;
220
+ export { insertColRight_1 as insertColRight };
221
+ let deleteRow_1: string;
222
+ export { deleteRow_1 as deleteRow };
223
+ let deleteCol_1: string;
224
+ export { deleteCol_1 as deleteCol };
225
+ let mergeCells_1: string;
226
+ export { mergeCells_1 as mergeCells };
227
+ let splitCell_1: string;
228
+ export { splitCell_1 as splitCell };
229
+ let deleteTable_1: string;
230
+ export { deleteTable_1 as deleteTable };
231
+ let rows_1: string;
232
+ export { rows_1 as rows };
233
+ let cols_1: string;
234
+ export { cols_1 as cols };
235
+ }
236
+ export { table_3 as table };
237
+ export namespace link_3 {
238
+ let placeholder_1: string;
239
+ export { placeholder_1 as placeholder };
240
+ let insert_3: string;
241
+ export { insert_3 as insert };
242
+ let remove_1: string;
243
+ export { remove_1 as remove };
244
+ }
245
+ export { link_3 as link };
246
+ export namespace sourceCode_3 {
247
+ let html_1: string;
248
+ export { html_1 as html };
249
+ let json_1: string;
250
+ export { json_1 as json };
251
+ let markdown_1: string;
252
+ export { markdown_1 as markdown };
253
+ let text_1: string;
254
+ export { text_1 as text };
255
+ }
256
+ export { sourceCode_3 as sourceCode };
257
+ export namespace variable_3 {
258
+ let title_2: string;
259
+ export { title_2 as title };
260
+ let avatar_1: string;
261
+ export { avatar_1 as avatar };
262
+ let nickname_1: string;
263
+ export { nickname_1 as nickname };
264
+ }
265
+ export { variable_3 as variable };
266
+ export namespace outline_1 {
267
+ let title_3: string;
268
+ export { title_3 as title };
269
+ let empty_1: string;
270
+ export { empty_1 as empty };
271
+ }
272
+ export { outline_1 as outline };
273
+ }
274
+ export namespace ja {
275
+ export namespace toolbar_2 {
276
+ let undo_2: string;
277
+ export { undo_2 as undo };
278
+ let redo_2: string;
279
+ export { redo_2 as redo };
280
+ let bold_2: string;
281
+ export { bold_2 as bold };
282
+ let italic_2: string;
283
+ export { italic_2 as italic };
284
+ let underline_2: string;
285
+ export { underline_2 as underline };
286
+ let strike_2: string;
287
+ export { strike_2 as strike };
288
+ let code_2: string;
289
+ export { code_2 as code };
290
+ let heading_2: string;
291
+ export { heading_2 as heading };
292
+ let fontSize_2: string;
293
+ export { fontSize_2 as fontSize };
294
+ let textColor_2: string;
295
+ export { textColor_2 as textColor };
296
+ let bgColor_2: string;
297
+ export { bgColor_2 as bgColor };
298
+ let bulletList_2: string;
299
+ export { bulletList_2 as bulletList };
300
+ let orderedList_2: string;
301
+ export { orderedList_2 as orderedList };
302
+ let codeBlock_2: string;
303
+ export { codeBlock_2 as codeBlock };
304
+ let blockquote_2: string;
305
+ export { blockquote_2 as blockquote };
306
+ let link_4: string;
307
+ export { link_4 as link };
308
+ let horizontalRule_2: string;
309
+ export { horizontalRule_2 as horizontalRule };
310
+ let align_4: string;
311
+ export { align_4 as align };
312
+ let alignLeft_2: string;
313
+ export { alignLeft_2 as alignLeft };
314
+ let alignCenter_2: string;
315
+ export { alignCenter_2 as alignCenter };
316
+ let alignRight_2: string;
317
+ export { alignRight_2 as alignRight };
318
+ let alignJustify_2: string;
319
+ export { alignJustify_2 as alignJustify };
320
+ let image_4: string;
321
+ export { image_4 as image };
322
+ let table_4: string;
323
+ export { table_4 as table };
324
+ let hardBreak_2: string;
325
+ export { hardBreak_2 as hardBreak };
326
+ let variable_4: string;
327
+ export { variable_4 as variable };
328
+ let sourceCode_4: string;
329
+ export { sourceCode_4 as sourceCode };
330
+ let htmlPreview_2: string;
331
+ export { htmlPreview_2 as htmlPreview };
332
+ let clearFormat_2: string;
333
+ export { clearFormat_2 as clearFormat };
334
+ }
335
+ export { toolbar_2 as toolbar };
336
+ export namespace image_5 {
337
+ let upload_2: string;
338
+ export { upload_2 as upload };
339
+ let url_2: string;
340
+ export { url_2 as url };
341
+ let uploadPlaceholder_2: string;
342
+ export { uploadPlaceholder_2 as uploadPlaceholder };
343
+ let uploadHint_2: string;
344
+ export { uploadHint_2 as uploadHint };
345
+ let urlPlaceholder_2: string;
346
+ export { urlPlaceholder_2 as urlPlaceholder };
347
+ let insert_4: string;
348
+ export { insert_4 as insert };
349
+ let width_2: string;
350
+ export { width_2 as width };
351
+ let small_2: string;
352
+ export { small_2 as small };
353
+ let medium_2: string;
354
+ export { medium_2 as medium };
355
+ let large_2: string;
356
+ export { large_2 as large };
357
+ let auto_2: string;
358
+ export { auto_2 as auto };
359
+ let align_5: string;
360
+ export { align_5 as align };
361
+ let float_2: string;
362
+ export { float_2 as float };
363
+ let floatLeft_2: string;
364
+ export { floatLeft_2 as floatLeft };
365
+ let floatRight_2: string;
366
+ export { floatRight_2 as floatRight };
367
+ let customSize_2: string;
368
+ export { customSize_2 as customSize };
369
+ let altText_2: string;
370
+ export { altText_2 as altText };
371
+ let altPlaceholder_2: string;
372
+ export { altPlaceholder_2 as altPlaceholder };
373
+ let _delete_2: string;
374
+ export { _delete_2 as delete };
375
+ let retry_2: string;
376
+ export { retry_2 as retry };
377
+ let uploading_2: string;
378
+ export { uploading_2 as uploading };
379
+ let uploadFailed_2: string;
380
+ export { uploadFailed_2 as uploadFailed };
381
+ }
382
+ export { image_5 as image };
383
+ export namespace table_5 {
384
+ let insertTable_2: string;
385
+ export { insertTable_2 as insertTable };
386
+ let insertRowAbove_2: string;
387
+ export { insertRowAbove_2 as insertRowAbove };
388
+ let insertRowBelow_2: string;
389
+ export { insertRowBelow_2 as insertRowBelow };
390
+ let insertColLeft_2: string;
391
+ export { insertColLeft_2 as insertColLeft };
392
+ let insertColRight_2: string;
393
+ export { insertColRight_2 as insertColRight };
394
+ let deleteRow_2: string;
395
+ export { deleteRow_2 as deleteRow };
396
+ let deleteCol_2: string;
397
+ export { deleteCol_2 as deleteCol };
398
+ let mergeCells_2: string;
399
+ export { mergeCells_2 as mergeCells };
400
+ let splitCell_2: string;
401
+ export { splitCell_2 as splitCell };
402
+ let deleteTable_2: string;
403
+ export { deleteTable_2 as deleteTable };
404
+ let rows_2: string;
405
+ export { rows_2 as rows };
406
+ let cols_2: string;
407
+ export { cols_2 as cols };
408
+ }
409
+ export { table_5 as table };
410
+ export namespace link_5 {
411
+ let placeholder_2: string;
412
+ export { placeholder_2 as placeholder };
413
+ let insert_5: string;
414
+ export { insert_5 as insert };
415
+ let remove_2: string;
416
+ export { remove_2 as remove };
417
+ }
418
+ export { link_5 as link };
419
+ export namespace sourceCode_5 {
420
+ let html_2: string;
421
+ export { html_2 as html };
422
+ let json_2: string;
423
+ export { json_2 as json };
424
+ let markdown_2: string;
425
+ export { markdown_2 as markdown };
426
+ let text_2: string;
427
+ export { text_2 as text };
428
+ }
429
+ export { sourceCode_5 as sourceCode };
430
+ export namespace variable_5 {
431
+ let title_4: string;
432
+ export { title_4 as title };
433
+ let avatar_2: string;
434
+ export { avatar_2 as avatar };
435
+ let nickname_2: string;
436
+ export { nickname_2 as nickname };
437
+ }
438
+ export { variable_5 as variable };
439
+ export namespace outline_2 {
440
+ let title_5: string;
441
+ export { title_5 as title };
442
+ let empty_2: string;
443
+ export { empty_2 as empty };
444
+ }
445
+ export { outline_2 as outline };
446
+ }
447
+ export function detectLanguage(): "zh" | "ja" | "en";
448
+ export namespace translations {
449
+ export { zh };
450
+ export { en };
451
+ export { ja };
452
+ }