@ones-editor/editor 2.2.11-beta.3 → 2.2.12-beta.1
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/@ones-editor/block-menu/src/block-menu-button/drag-drop/drag-handler.d.ts +1 -1
- package/@ones-editor/comments/src/comments-helper/get-comment-abstract.d.ts +1 -2
- package/@ones-editor/comments/src/comments-list/group-list.d.ts +1 -1
- package/@ones-editor/core/src/core/editor/editor-dom/editor-dom.d.ts +3 -2
- package/@ones-editor/core/src/core/selection/select-handler.d.ts +2 -4
- package/@ones-editor/core/src/core/types.d.ts +1 -3
- package/@ones-editor/core/src/utils/dom.d.ts +0 -1
- package/@ones-editor/graph-embed/assets/index.d.ts +2 -0
- package/@ones-editor/graph-embed/src/config/index.d.ts +1 -9
- package/@ones-editor/graph-embed/src/flowchart/flowchart-embed.d.ts +1 -1
- package/@ones-editor/graph-embed/src/flowchart/flowchart-helper.d.ts +1 -2
- package/@ones-editor/graph-embed/src/flowchart/flowchart.d.ts +3 -11
- package/@ones-editor/graph-embed/src/helper/graph-base.d.ts +23 -24
- package/@ones-editor/graph-embed/src/helper/graph-block-commands.d.ts +4 -3
- package/@ones-editor/graph-embed/src/index.d.ts +2 -3
- package/@ones-editor/graph-embed/src/lang/en-us.d.ts +6 -11
- package/@ones-editor/graph-embed/src/lang/ja-jp.d.ts +6 -11
- package/@ones-editor/graph-embed/src/lang/zh-cn.d.ts +6 -11
- package/@ones-editor/graph-embed/src/mermaid/mermaid-embed.d.ts +1 -1
- package/@ones-editor/graph-embed/src/mermaid/mermaid-helper.d.ts +0 -1
- package/@ones-editor/graph-embed/src/mermaid/mermaid.d.ts +4 -11
- package/@ones-editor/graph-embed/src/plantuml/plantuml-embed.d.ts +1 -1
- package/@ones-editor/graph-embed/src/plantuml/plantuml-helper.d.ts +1 -2
- package/@ones-editor/graph-embed/src/plantuml/plantuml.d.ts +3 -11
- package/@ones-editor/graph-embed/types/index.d.ts +16 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/ui/src/box-helper/standard-box-commands.d.ts +2 -6
- package/@ones-editor/ui/src/index.d.ts +2 -2
- package/@ones-editor/ui/src/quick-menu/index.d.ts +1 -2
- package/@ones-editor/ui/src/tooltips/overflow-tooltip-helper.d.ts +11 -0
- package/@ones-editor/ui-base/src/auto-suggest/auto-suggest-menu.d.ts +0 -2
- package/@ones-editor/ui-base/src/auto-suggest/auto-suggest.d.ts +0 -2
- package/@ones-editor/ui-base/src/command-bar/command-bar.d.ts +1 -1
- package/@ones-editor/ui-base/src/command-bar/types.d.ts +0 -1
- package/dist/index.js +6489 -6931
- package/package.json +1 -1
- package/@ones-editor/graph-embed/src/command.d.ts +0 -6
- package/@ones-editor/graph-embed/src/helper/graph-dom/code-editor.d.ts +0 -2
- package/@ones-editor/graph-embed/src/helper/graph-dom/draw-dom.d.ts +0 -16
- package/@ones-editor/graph-embed/src/helper/graph-dom/layout-dom.d.ts +0 -25
- package/@ones-editor/graph-embed/src/helper/graph-dom/view-select.d.ts +0 -22
- package/@ones-editor/graph-embed/src/helper/graph-quick-commands.d.ts +0 -3
- package/@ones-editor/graph-embed/src/types.d.ts +0 -38
- package/@ones-editor/status/src/dom/overflow-tooltip-tag.d.ts +0 -10
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare function getCommentAbstract(editor: OnesEditor, blocks: BlockElement[]): string;
|
|
1
|
+
import { OnesEditor, SelectedBlock } from '../../../../@ones-editor/core';
|
|
3
2
|
export declare function getCommentAbstractFromSelectedBlocks(editor: OnesEditor, blocks: SelectedBlock[]): string;
|
|
@@ -15,7 +15,7 @@ export default class CommentGroupList extends ListBase<CommentWithChildren, Comm
|
|
|
15
15
|
constructor(editor: OnesEditor, commentsProvider: OnesEditorCommentsProvider, parent: HTMLElement);
|
|
16
16
|
destroy(): void;
|
|
17
17
|
dispatchScroll: import("lodash").DebouncedFunc<() => void>;
|
|
18
|
-
updateItemsLayout(
|
|
18
|
+
updateItemsLayout(): void;
|
|
19
19
|
private bindEvents;
|
|
20
20
|
private unbindEvents;
|
|
21
21
|
protected createItem(data: CommentWithChildren, reason: 'init' | 'insert'): CommentGroupItem;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { IUserOptions } from '../../../utils/animate-scroll';
|
|
2
1
|
import { OnesEditor, SimpleBlockPosition } from '../../types';
|
|
3
2
|
export declare function editorGetClientHeight(editor: OnesEditor): number;
|
|
4
3
|
export declare function editorGetClientTop(editor: OnesEditor): number;
|
|
@@ -7,5 +6,7 @@ export declare function editorGetVisibleRect(editor: OnesEditor): DOMRect;
|
|
|
7
6
|
export declare function isBlockPositionVisible(editor: OnesEditor, pos: SimpleBlockPosition): boolean;
|
|
8
7
|
export declare function scrollIntoView(editor: OnesEditor, target: HTMLElement, options?: {
|
|
9
8
|
animation?: boolean;
|
|
10
|
-
|
|
9
|
+
verticalOffset?: number;
|
|
10
|
+
elementToScroll?: HTMLElement;
|
|
11
|
+
}): void;
|
|
11
12
|
export declare function editorScrollIntoView(editor: OnesEditor): void;
|
|
@@ -5,13 +5,11 @@ export declare class EditorSelectionHandler implements OnesEditorSelectionHandle
|
|
|
5
5
|
startPos: BlockPosition | null;
|
|
6
6
|
lastCaretRect: DOMRect;
|
|
7
7
|
mouseDownEvent: TouchEvent | MouseEvent | null;
|
|
8
|
-
autoScroll: AutoScroll
|
|
8
|
+
autoScroll: AutoScroll;
|
|
9
9
|
constructor(editor: OnesEditor);
|
|
10
10
|
isSelecting(): boolean;
|
|
11
11
|
stopSelection(): void;
|
|
12
|
-
handleMouseDown: (event: MouseEvent | TouchEvent
|
|
13
|
-
autoScroll: boolean;
|
|
14
|
-
}) => void;
|
|
12
|
+
handleMouseDown: (event: MouseEvent | TouchEvent) => void;
|
|
15
13
|
handleMouseMove: (event: MouseEvent) => void;
|
|
16
14
|
handleMouseUp: (event: MouseEvent | TouchEvent) => void;
|
|
17
15
|
handleDblClick(event: MouseEvent): void;
|
|
@@ -664,9 +664,7 @@ export interface OnesEditorInput {
|
|
|
664
664
|
export interface OnesEditorSelectionHandler {
|
|
665
665
|
isSelecting: () => boolean;
|
|
666
666
|
stopSelection: () => void;
|
|
667
|
-
handleMouseDown: (event: MouseEvent | TouchEvent
|
|
668
|
-
autoScroll: boolean;
|
|
669
|
-
}) => void;
|
|
667
|
+
handleMouseDown: (event: MouseEvent | TouchEvent) => void;
|
|
670
668
|
handleMouseMove: (event: MouseEvent) => void;
|
|
671
669
|
handleMouseUp: (event: MouseEvent | TouchEvent) => void;
|
|
672
670
|
handleDblClick: (event: MouseEvent) => void;
|
|
@@ -40,5 +40,4 @@ export declare function getElementFromPoint(x: number, y: number, options?: {
|
|
|
40
40
|
export declare function createMouseEventFromTouchEvent(event: TouchEvent, type: 'mousedown' | 'mousemove' | 'mouseup' | 'click'): MouseEvent;
|
|
41
41
|
export declare function ensureIsMobileEvent(events: MouseEvent | TouchEvent): events is TouchEvent;
|
|
42
42
|
export declare function bindDbClick(editor: OnesEditor, elem: HTMLElement, handler: (event: MouseEvent) => void): () => void;
|
|
43
|
-
export declare function bindPreventSelect(elem: HTMLElement): () => void;
|
|
44
43
|
export {};
|
|
@@ -1,12 +1,4 @@
|
|
|
1
|
-
import { GraphType } from '../types';
|
|
2
1
|
export declare const MERMAID_SCRIPTS = "https://cdn.jsdelivr.net/npm/mermaid@9.0.1/dist/mermaid.min.js";
|
|
3
2
|
export declare const FLOWCHART_SCRIPTS: string[];
|
|
4
3
|
export declare const PLANTUML_PRE = "https://www.plantuml.com/plantuml/svg";
|
|
5
|
-
export declare const GRAPH_MIN_HEIGHT =
|
|
6
|
-
export declare const GRAPH_MAX_HEIGHT = 1000;
|
|
7
|
-
export declare const GRAPH_DEFAULT_HEIGHT = 300;
|
|
8
|
-
export declare const DEFAULT_FLEX = 0.5;
|
|
9
|
-
export declare const MIN_FLEX = 0.3;
|
|
10
|
-
export declare const IMAGE_CLASS_NAME = "graph-embed-image";
|
|
11
|
-
export declare const DRAG_RANGE = 10;
|
|
12
|
-
export declare const GraphDocumentUrl: Record<GraphType, string>;
|
|
4
|
+
export declare const GRAPH_MIN_HEIGHT = 200;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
1
|
+
import type { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
2
|
import '../../types/window.d';
|
|
3
|
-
export declare const FLOWCHART_TYPE = "flowchart";
|
|
4
3
|
export declare function flowchartCodeToSvgStr(editor: OnesEditor, flowDataCode: string): Promise<string>;
|
|
5
4
|
export declare function flowchartCodeToObjectUrl(editor: OnesEditor, flowChartCode: string): Promise<string>;
|
|
6
5
|
export declare function flowchartCodeToResourceId(editor: OnesEditor, flowChartCode: string): Promise<string>;
|
|
@@ -1,17 +1,9 @@
|
|
|
1
|
-
import { OnesEditor, DocEmbedBlock
|
|
1
|
+
import type { OnesEditor, DocEmbedBlock } from '../../../../@ones-editor/core';
|
|
2
2
|
import GraphBase from '../helper/graph-base';
|
|
3
|
-
import { StandardGraphData, GraphType } from '../types';
|
|
4
3
|
export declare class FlowChartInstance extends GraphBase {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
static get(editor: OnesEditor, id: string): FlowChartInstance;
|
|
4
|
+
constructor(editor: OnesEditor);
|
|
5
|
+
static get(editor: OnesEditor, block: DocEmbedBlock): FlowChartInstance;
|
|
8
6
|
protected code2ObjectUrl(code: string): Promise<string>;
|
|
9
7
|
protected code2ResourceId(code: string): Promise<string>;
|
|
10
|
-
static createEmptyEmbedData: () => {
|
|
11
|
-
flowchartText: string;
|
|
12
|
-
src: string;
|
|
13
|
-
};
|
|
14
|
-
protected createGraphEmbedData: (block: BlockElement, data: Partial<StandardGraphData>) => import("@ones-editor/core").DocEmbedData;
|
|
15
|
-
protected getGraphData: (blockData: DocEmbedBlock) => StandardGraphData;
|
|
16
8
|
destroy(): void;
|
|
17
9
|
}
|
|
@@ -1,30 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { BlockProperties } from '../../../../@ones-editor/core';
|
|
2
|
+
import type { OnesEditor, BlockContentElement, DocEmbedBlock, BlockElement, Logger } from '../../../../@ones-editor/core';
|
|
3
|
+
import type { GraphType, GraphEmbedBlockProperties } from './graph-block-commands';
|
|
3
4
|
export default abstract class GraphBase {
|
|
5
|
+
private graphType;
|
|
6
|
+
private codeEmbedDataKey;
|
|
4
7
|
protected editor: OnesEditor;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
+
logger: Logger;
|
|
9
|
+
editing: boolean;
|
|
10
|
+
private graphEmbedContent;
|
|
11
|
+
private _status;
|
|
12
|
+
constructor(editor: OnesEditor, graphType: GraphType, codeEmbedDataKey: string);
|
|
8
13
|
protected abstract code2ObjectUrl(code: string): Promise<string>;
|
|
9
14
|
protected abstract code2ResourceId(code: string): Promise<string>;
|
|
10
|
-
protected
|
|
11
|
-
protected
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
private getRealView;
|
|
15
|
+
protected i18nt(key: string, arg?: Record<string, string>): string;
|
|
16
|
+
protected getContent(embed: HTMLDivElement): BlockContentElement;
|
|
17
|
+
protected getEmbed(content: BlockContentElement): HTMLDivElement;
|
|
18
|
+
protected uploadResource(svg: string): Promise<string | null>;
|
|
19
|
+
createEmbedContent(content: BlockContentElement, block: DocEmbedBlock): void;
|
|
20
|
+
updateEmbedContent(content: BlockContentElement, block: DocEmbedBlock): void;
|
|
21
|
+
protected updateImage(embed: HTMLDivElement, code: string | undefined, url: string | undefined | null, err: Error | null): Promise<void>;
|
|
22
|
+
protected errorBoundary(embed: HTMLDivElement, code: string | undefined, url: string | undefined | null, reason: 'imageLoadError' | 'grammarError', error?: Error): void;
|
|
23
|
+
protected emptyContent(): void;
|
|
24
|
+
protected updateSpecialClasses(embed: HTMLDivElement, code: string | undefined, err: Error | null): void;
|
|
25
|
+
editGraph(content: BlockContentElement): void;
|
|
26
|
+
getBlockProperties(block: BlockElement, properties?: GraphEmbedBlockProperties): BlockProperties;
|
|
23
27
|
private hasChanged;
|
|
24
|
-
|
|
25
|
-
private updateHeight;
|
|
26
|
-
private updateLayout;
|
|
27
|
-
private updateDraw;
|
|
28
|
-
updateEmbedContent(content: BlockContentElement, block: DocEmbedBlock): Promise<void>;
|
|
29
|
-
getBlockProperties(block: BlockElement): BlockProperties;
|
|
28
|
+
private removeStatusContent;
|
|
30
29
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { BlockElement } from '../../../../@ones-editor/core';
|
|
2
2
|
import type { OnesEditor } from '../../../../@ones-editor/core';
|
|
3
|
-
import { CommandId } from '../../../../@ones-editor/embed-block-helper';
|
|
4
|
-
|
|
5
|
-
export
|
|
3
|
+
import { CommandId, type StandardEmbedBlockProperties } from '../../../../@ones-editor/embed-block-helper';
|
|
4
|
+
export type GraphType = 'mermaid' | 'flowchart' | 'plantuml';
|
|
5
|
+
export type GraphEmbedBlockProperties = StandardEmbedBlockProperties;
|
|
6
|
+
export declare function getGraphEmbedBlockProperties(editor: OnesEditor, block: BlockElement, type: 'mermaid' | 'flowchart' | 'plantuml', properties?: GraphEmbedBlockProperties): {
|
|
6
7
|
abstract: string;
|
|
7
8
|
blockCommands: {
|
|
8
9
|
'hovering-toolbar': import("@ones-editor/embed-block-helper").StandardEmbedBlockCommands<CommandId>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import MermaidEmbed from './mermaid/mermaid-embed';
|
|
2
2
|
import FlowChartEmbed from './flowchart/flowchart-embed';
|
|
3
3
|
import PlantumlEmbed from './plantuml/plantuml-embed';
|
|
4
|
-
import { GraphCommandProvider } from './command';
|
|
5
4
|
import './common.scss';
|
|
6
|
-
export { MermaidEmbed, PlantumlEmbed, FlowChartEmbed,
|
|
7
|
-
export * from '
|
|
5
|
+
export { MermaidEmbed, PlantumlEmbed, FlowChartEmbed, };
|
|
6
|
+
export * from '../types';
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
graph: {
|
|
3
|
+
invalid: string;
|
|
3
4
|
empty: string;
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
edit: string;
|
|
6
|
+
comment: string;
|
|
6
7
|
help: string;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
command: {
|
|
11
|
-
name: string;
|
|
12
|
-
bothShow: string;
|
|
13
|
-
codeShow: string;
|
|
14
|
-
drawShow: string;
|
|
15
|
-
};
|
|
8
|
+
errorTips: string;
|
|
9
|
+
errorSubTips: string;
|
|
10
|
+
retry: string;
|
|
16
11
|
};
|
|
17
12
|
};
|
|
18
13
|
export default _default;
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
graph: {
|
|
3
|
+
invalid: string;
|
|
3
4
|
empty: string;
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
edit: string;
|
|
6
|
+
comment: string;
|
|
6
7
|
help: string;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
command: {
|
|
11
|
-
name: string;
|
|
12
|
-
bothShow: string;
|
|
13
|
-
codeShow: string;
|
|
14
|
-
drawShow: string;
|
|
15
|
-
};
|
|
8
|
+
errorTips: string;
|
|
9
|
+
errorSubTips: string;
|
|
10
|
+
retry: string;
|
|
16
11
|
};
|
|
17
12
|
};
|
|
18
13
|
export default _default;
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
graph: {
|
|
3
|
+
invalid: string;
|
|
3
4
|
empty: string;
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
edit: string;
|
|
6
|
+
comment: string;
|
|
6
7
|
help: string;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
command: {
|
|
11
|
-
name: string;
|
|
12
|
-
bothShow: string;
|
|
13
|
-
codeShow: string;
|
|
14
|
-
drawShow: string;
|
|
15
|
-
};
|
|
8
|
+
errorTips: string;
|
|
9
|
+
errorSubTips: string;
|
|
10
|
+
retry: string;
|
|
16
11
|
};
|
|
17
12
|
};
|
|
18
13
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
|
-
export declare const MERMAID_TYPE = "mermaid";
|
|
3
2
|
export declare function mermaidCodeToSvg(editor: OnesEditor, code: string): Promise<string>;
|
|
4
3
|
export declare function mermaidCodeToObjectUrl(editor: OnesEditor, code: string): Promise<string>;
|
|
5
4
|
export declare function mermaidCodeToResourceId(editor: OnesEditor, code: string): Promise<string>;
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { OnesEditor, DocEmbedBlock
|
|
1
|
+
import type { OnesEditor, DocEmbedBlock } from '../../../../@ones-editor/core';
|
|
2
2
|
import GraphBase from '../helper/graph-base';
|
|
3
|
-
import { GraphType, StandardGraphData } from '../types';
|
|
4
3
|
export declare class MermaidInstance extends GraphBase {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
static get(editor: OnesEditor, id: string): MermaidInstance;
|
|
4
|
+
constructor(editor: OnesEditor);
|
|
5
|
+
static get(editor: OnesEditor, block: DocEmbedBlock): MermaidInstance;
|
|
8
6
|
code2ObjectUrl(code: string): Promise<string>;
|
|
9
7
|
code2ResourceId(code: string): Promise<string>;
|
|
10
|
-
|
|
11
|
-
mermaidText: string;
|
|
12
|
-
src: string;
|
|
13
|
-
};
|
|
14
|
-
protected createGraphEmbedData: (block: BlockElement, data: Partial<StandardGraphData>) => import("@ones-editor/core").DocEmbedData;
|
|
15
|
-
protected getGraphData: (blockData: DocEmbedBlock) => StandardGraphData;
|
|
8
|
+
destroy(): void;
|
|
16
9
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
|
-
export declare const PLANTUML_TYPE = "plantuml";
|
|
1
|
+
import type { OnesEditor } from '../../../../@ones-editor/core';
|
|
3
2
|
export declare function plantumlCodeToUrl(editor: OnesEditor, plantumlText: string): string;
|
|
4
3
|
export declare function plantumlUrlToResourceId(editor: OnesEditor, url: string): Promise<string>;
|
|
@@ -1,17 +1,9 @@
|
|
|
1
|
-
import { OnesEditor, DocEmbedBlock
|
|
1
|
+
import type { OnesEditor, DocEmbedBlock } from '../../../../@ones-editor/core';
|
|
2
2
|
import GraphBase from '../helper/graph-base';
|
|
3
|
-
import { GraphType, StandardGraphData } from '../types';
|
|
4
3
|
export declare class PlantumlInstance extends GraphBase {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
static get(editor: OnesEditor, id: string): PlantumlInstance;
|
|
4
|
+
constructor(editor: OnesEditor);
|
|
5
|
+
static get(editor: OnesEditor, block: DocEmbedBlock): PlantumlInstance;
|
|
8
6
|
protected code2ObjectUrl(code: string): Promise<string>;
|
|
9
7
|
protected code2ResourceId(code: string): Promise<string>;
|
|
10
|
-
static createEmptyEmbedData: () => {
|
|
11
|
-
plantumlText: string;
|
|
12
|
-
src: string;
|
|
13
|
-
};
|
|
14
|
-
protected createGraphEmbedData: (block: BlockElement, data: Partial<StandardGraphData>) => import("@ones-editor/core").DocEmbedData;
|
|
15
|
-
protected getGraphData: (blockData: DocEmbedBlock) => StandardGraphData;
|
|
16
8
|
destroy(): void;
|
|
17
9
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type MermaidEmbedOptions = {
|
|
2
|
+
cdn?: {
|
|
3
|
+
mermaid?: string;
|
|
4
|
+
};
|
|
5
|
+
};
|
|
6
|
+
export type FlowCharEmbedOptions = {
|
|
7
|
+
cdn?: {
|
|
8
|
+
flowchart?: string[];
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export type PlantumlEmbedOptions = {
|
|
12
|
+
cdn?: {
|
|
13
|
+
plantuml?: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export type LANG = Record<string, string | Record<string, string>>;
|