@omnia/fx 8.0.268-dev → 8.0.269-dev
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/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/floweditor/FlowRendererPluginStore.d.ts +43 -0
- package/internal-do-not-import-from-here/stores/floweditor/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/management/api/AppManagementApi.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditor.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/EditorCommands.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/helpers/EditorNodeHelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/helpers/HtmlNodehelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/commands/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/flow/editor/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/EditorModels.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/EditorPlugin.d.ts +4 -5
- package/internal-do-not-import-from-here/ux/flow/editor/models/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/parsers/HtmlParser.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/parsers/JSONParser.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/flow/editor/parsers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/DefineEditorPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/bold/BoldPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/colorstyle/ColorConverter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/colorstyle/ColorStylePlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/elements/ElementConverter.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/EditorEvents.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/KeyboardEvents.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/handlers/BackspaceHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/handlers/EnterHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/handlers/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/italic/ItalicPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/sourceeditor/SourceEditorButton.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/sourceeditor/SourceEditorPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/testdata/TestDataPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/text/TextConverter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyButton.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/typography/TypographyPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/velcron/VelcronPlugin.d.ts +2 -6
- package/internal-do-not-import-from-here/ux/flow/editor/rules/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/stores/FlowEditorStore.d.ts +24 -25
- package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/stores/FlowEditorToolbarStore.d.ts +125 -125
- package/internal-do-not-import-from-here/ux/flow/editor/stores/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/flow/models/ColorFormatNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/models/ElementNode.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/flow/models/FlowContent.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/flow/models/TypographyNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/models/VelcronNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/models/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/FlowRenderer.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/PluginRegistrationHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/Constants.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererContentPlugin.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererContext.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererPluginContext.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/FlowRendererToHtmlContext.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/models/index.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/parsers/JSONParser.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/parsers/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/DefineRendererPlugin.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/PluginRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/bold/BoldPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/colorstyle/ColorStylePlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/elements/ElementPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/italic/ItalicPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/text/TextConverter.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/text/TextPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/typography/TypographyPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/velcron/VelcronPlugin.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/stores/FlowRendererStore.d.ts +109 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +9 -129
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +2 -4
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.stylex.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.stylex.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +28 -22
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/floweditor/plugins/bold/BoldPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/floweditor/plugins/colorstyle/ColorButton.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/floweditor/plugins/elements/ElementPlugin.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/floweditor/plugins/italic/ItalicPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/floweditor/plugins/text/TextPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/floweditor/plugins/typography/TypographyButton.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +0 -89
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentRenderer.d.ts +0 -80
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector copy.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.d.ts +0 -11
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar copy.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.css.d.ts +0 -6
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/markdownplugins/section/SectionRenderer.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/markdownplugins/section/SectionRendererPlugin.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +0 -249
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditor.css.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditorToolbar.css.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/FlowEditorToolbar.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/PluginRegistrationHandler.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/commands/helpers/Editorhelper.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/models/Constants.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor/plugins/registrations → flow/editor/plugins}/PluginRegistrations.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor/plugins/sourceeditor/SourceEditorButton.d.ts → flow/editor/plugins/colorstyle/ColorButton.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/plugins/eventhandlers/converters/WordConverter.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/rules/EditorRules.d.ts +0 -0
@@ -1,5 +1,5 @@
|
|
1
|
-
import { FlowNode } from "
|
2
|
-
import { ElementConverter } from "../../models
|
1
|
+
import { FlowNode } from "../../../models";
|
2
|
+
import { ElementConverter } from "../../models";
|
3
3
|
export interface ElementNode extends FlowNode {
|
4
4
|
name: "br";
|
5
5
|
}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { FlowEditorPluginContext } from "../../../models
|
2
|
-
import { useFlowEditorStore } from "../../../stores
|
1
|
+
import { FlowEditorPluginContext } from "../../../models";
|
2
|
+
import { useFlowEditorStore } from "../../../stores";
|
3
3
|
export declare function useClipboardHandler(): {
|
4
4
|
paste: (ev: ClipboardEvent, editorStore: ReturnType<typeof useFlowEditorStore>) => void;
|
5
5
|
copy: (event: ClipboardEvent, context: FlowEditorPluginContext) => void;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { ElementConverter } from "../../models
|
1
|
+
import { ElementConverter } from "../../models";
|
2
2
|
export declare function useTextConverter(): ElementConverter;
|
@@ -1,13 +1,9 @@
|
|
1
|
-
import { DynamicState, VelcronAppDefinition, VelcronDefinitionRegistrationWithoutApp
|
2
|
-
import { FlowNode } from "../../models/EditorModels";
|
3
|
-
export interface VelcronContentNode extends FlowNode {
|
4
|
-
definition: VelcronAppDefinition | VelcronRendererResolverReference;
|
5
|
-
}
|
1
|
+
import { DynamicState, VelcronAppDefinition, VelcronDefinitionRegistrationWithoutApp } from "@omnia/fx-models";
|
6
2
|
export type VelcronHtmlDivElement = HTMLDivElement & {
|
7
3
|
velcron: VelcronAppDefinition;
|
8
4
|
velcronRegistration: VelcronDefinitionRegistrationWithoutApp;
|
9
5
|
state: DynamicState;
|
10
6
|
};
|
11
|
-
export declare const velcronRendererPlugin: () => import("../../models
|
7
|
+
export declare const velcronRendererPlugin: () => import("../../models").FlowEditorPlugin & {
|
12
8
|
dispose?: () => void;
|
13
9
|
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./EditorRules";
|
package/internal-do-not-import-from-here/ux/{floweditor → flow/editor}/stores/FlowEditorStore.d.ts
RENAMED
@@ -1,7 +1,6 @@
|
|
1
|
-
import { FlowEditorActionRegistration, FlowEditorPluginSettings } from "@omnia/fx-models";
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
import { FlowContent, NodeSelection } from "../models/EditorModels";
|
1
|
+
import { FlowEditorActionRegistration, FlowEditorPluginSettings, guid } from "@omnia/fx-models";
|
2
|
+
import { FlowEditorPlugin, FlowEditorPluginContext, NodeSelection } from "../models";
|
3
|
+
import { FlowContent } from "../../models";
|
5
4
|
export declare const useFlowEditorStore: () => {
|
6
5
|
state: {
|
7
6
|
editorContent: FlowContent;
|
@@ -24,20 +23,20 @@ export declare const useFlowEditorStore: () => {
|
|
24
23
|
};
|
25
24
|
};
|
26
25
|
events: {
|
27
|
-
onMutatedEditorContent: import("@omnia/fx
|
28
|
-
onMutatedPlugins: import("@omnia/fx
|
29
|
-
onMutatedHideToolbar: import("@omnia/fx
|
30
|
-
onMutatedEditMode: import("@omnia/fx
|
31
|
-
onMutatedMaxNodeId: import("@omnia/fx
|
32
|
-
onMutatedToolbarActions: import("@omnia/fx
|
33
|
-
onMutatedEditor: import("@omnia/fx
|
34
|
-
onMutatedNodeSelection: import("@omnia/fx
|
35
|
-
onMutatedTelePorts: import("@omnia/fx
|
36
|
-
onMutatedId: import("@omnia/fx
|
37
|
-
onMutatedPluginContext: import("@omnia/fx
|
38
|
-
onMutatedSelectedRange: import("@omnia/fx
|
39
|
-
onMutatedShowPlaceHolder: import("@omnia/fx
|
40
|
-
onMutatedDefinitionSelector: import("@omnia/fx
|
26
|
+
onMutatedEditorContent: import("@omnia/fx").MessageBusExposeOnlySubscription<FlowContent>;
|
27
|
+
onMutatedPlugins: import("@omnia/fx").MessageBusExposeOnlySubscription<FlowEditorPlugin[]>;
|
28
|
+
onMutatedHideToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
29
|
+
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
30
|
+
onMutatedMaxNodeId: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
31
|
+
onMutatedToolbarActions: import("@omnia/fx").MessageBusExposeOnlySubscription<FlowEditorActionRegistration[]>;
|
32
|
+
onMutatedEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
33
|
+
onMutatedNodeSelection: import("@omnia/fx").MessageBusExposeOnlySubscription<NodeSelection>;
|
34
|
+
onMutatedTelePorts: import("@omnia/fx").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
35
|
+
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
36
|
+
onMutatedPluginContext: import("@omnia/fx").MessageBusExposeOnlySubscription<FlowEditorPluginContext>;
|
37
|
+
onMutatedSelectedRange: import("@omnia/fx").MessageBusExposeOnlySubscription<Range>;
|
38
|
+
onMutatedShowPlaceHolder: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
39
|
+
onMutatedDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
41
40
|
show: boolean;
|
42
41
|
categoryFilters: guid[];
|
43
42
|
rendererTypeFilters: guid[];
|
@@ -130,7 +129,7 @@ export declare const useFlowEditorStore: () => {
|
|
130
129
|
};
|
131
130
|
selection: {
|
132
131
|
get: {
|
133
|
-
byPluginType: (pluginType: string) => import("../models
|
132
|
+
byPluginType: (pluginType: string) => import("../models").FlowNodeReference[];
|
134
133
|
};
|
135
134
|
};
|
136
135
|
cursor: {
|
@@ -177,7 +176,7 @@ export declare const useFlowEditorStore: () => {
|
|
177
176
|
};
|
178
177
|
editorNode: {
|
179
178
|
get: {
|
180
|
-
nodesInArrayByPluginType: (nodes: Array<import("../models
|
179
|
+
nodesInArrayByPluginType: (nodes: Array<import("../models").FlowNodeReference>, dataType: string) => Array<import("../models").FlowNodeReference>;
|
181
180
|
};
|
182
181
|
};
|
183
182
|
htmlNode: {
|
@@ -194,7 +193,7 @@ export declare const useFlowEditorStore: () => {
|
|
194
193
|
htmlElementInStructureById: (id: number, currentElement: HTMLElement) => HTMLElement;
|
195
194
|
};
|
196
195
|
remove: {
|
197
|
-
nodes: (nodes2Remove: Array<import("../models
|
196
|
+
nodes: (nodes2Remove: Array<import("../models").FlowNodeReference>, editor: HTMLElement) => void;
|
198
197
|
};
|
199
198
|
strip: {
|
200
199
|
after: (element: HTMLElement, splitter: string) => void;
|
@@ -282,7 +281,7 @@ export declare const useFlowEditorStore: () => {
|
|
282
281
|
};
|
283
282
|
selection: {
|
284
283
|
get: {
|
285
|
-
byPluginType: (pluginType: string) => import("../models
|
284
|
+
byPluginType: (pluginType: string) => import("../models").FlowNodeReference[];
|
286
285
|
};
|
287
286
|
};
|
288
287
|
cursor: {
|
@@ -329,7 +328,7 @@ export declare const useFlowEditorStore: () => {
|
|
329
328
|
};
|
330
329
|
editorNode: {
|
331
330
|
get: {
|
332
|
-
nodesInArrayByPluginType: (nodes: Array<import("../models
|
331
|
+
nodesInArrayByPluginType: (nodes: Array<import("../models").FlowNodeReference>, dataType: string) => Array<import("../models").FlowNodeReference>;
|
333
332
|
};
|
334
333
|
};
|
335
334
|
htmlNode: {
|
@@ -346,7 +345,7 @@ export declare const useFlowEditorStore: () => {
|
|
346
345
|
htmlElementInStructureById: (id: number, currentElement: HTMLElement) => HTMLElement;
|
347
346
|
};
|
348
347
|
remove: {
|
349
|
-
nodes: (nodes2Remove: Array<import("../models
|
348
|
+
nodes: (nodes2Remove: Array<import("../models").FlowNodeReference>, editor: HTMLElement) => void;
|
350
349
|
};
|
351
350
|
strip: {
|
352
351
|
after: (element: HTMLElement, splitter: string) => void;
|
@@ -372,7 +371,7 @@ export declare const useFlowEditorStore: () => {
|
|
372
371
|
type: (pluginType: string) => boolean;
|
373
372
|
};
|
374
373
|
get: {
|
375
|
-
byType: (pluginType: string) => import("../models
|
374
|
+
byType: (pluginType: string) => import("../models").FlowNodeReference[];
|
376
375
|
};
|
377
376
|
};
|
378
377
|
};
|