@elyx-code/project-logic-tree 0.0.6129 → 0.0.6131
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.
|
@@ -2,6 +2,7 @@ import { CallableEntity, CallableEntityTransfer, IInstalledProject, IProject, IP
|
|
|
2
2
|
|
|
3
3
|
export interface IBaseEventTransfer extends IBaseCanvasDraggable {
|
|
4
4
|
type: EntityType.GlobalEvent;
|
|
5
|
+
description: string | null;
|
|
5
6
|
returnStatements: (IReturnStatement | IReturnStatementTransfer)[];
|
|
6
7
|
inputs: (IArgumentDeclaration | IArgumentDeclarationTransfer)[];
|
|
7
8
|
calls: (CallableEntity | CallableEntityTransfer)[];
|
|
@@ -12,6 +13,7 @@ export interface IBaseEventGenerationTarget extends IGenericBase {
|
|
|
12
13
|
}
|
|
13
14
|
export interface IBaseEventShallowTransfer extends IBaseCanvasDraggable {
|
|
14
15
|
type: EntityType.GlobalEvent;
|
|
16
|
+
description: string | null;
|
|
15
17
|
returnStatements: IReturnStatementReference[];
|
|
16
18
|
inputs: IArgumentDeclarationReference[];
|
|
17
19
|
calls: CallableEntityReference[];
|
|
@@ -24,6 +26,7 @@ export declare enum GlobalEventNames {
|
|
|
24
26
|
export interface IGlobalEventTransfer extends IBaseEventTransfer, IChildEntityTransfer {
|
|
25
27
|
type: EntityType.GlobalEvent;
|
|
26
28
|
name: GlobalEventNames;
|
|
29
|
+
description: string | null;
|
|
27
30
|
implements: IActionDescriptor | IActionDescriptorTransfer;
|
|
28
31
|
parent: IProject | IProjectReference | IInstalledProject | IInstalledProjectReference;
|
|
29
32
|
}
|
|
@@ -31,6 +34,7 @@ export interface IGlobalEventGenerationTarget extends IChildEntityGenerationTarg
|
|
|
31
34
|
id: EntityId;
|
|
32
35
|
type: EntityType.GlobalEvent;
|
|
33
36
|
name: GlobalEventNames;
|
|
37
|
+
description?: string;
|
|
34
38
|
implements: EntityId;
|
|
35
39
|
parent?: EntityId;
|
|
36
40
|
}
|