@elyx-code/project-logic-tree 0.0.6071 → 0.0.6073

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.
@@ -96,9 +96,11 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
96
96
  getShallowErrors(): EntityError[];
97
97
  getDefaultValue(): PrimitiveValueState | null;
98
98
  clone(parent?: ReturnStatementState | BreakStatementState | ContinueStatementState | null, newId?: string | null, subscribe?: boolean): ReturnDeclarationState;
99
- setDataType(dataType: DataTypeState): ReturnDeclarationState;
99
+ setDataType(dataType: DataTypeState | null): ReturnDeclarationState;
100
100
  removeDataType(): ReturnDeclarationState;
101
101
  inferDataType(): ReturnDeclarationState;
102
+ getCounterparts(): ReturnDeclarationState[];
103
+ inferDataTypeFromCounterparts(): ReturnDeclarationState;
102
104
  getDataType(): DataTypeState | null;
103
105
  }
104
106
  export type ReturnDeclarationPayloadUnion = ReturnDeclarationState | ReturnDeclarationTypesUnion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6071",
3
+ "version": "0.0.6073",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",