@elyx-code/project-logic-tree 0.0.6452 → 0.0.6453

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/dist/index.d.ts CHANGED
@@ -507,6 +507,7 @@ export declare class ArgumentDeclarationState extends VersionedState implements
507
507
  getDataType(_changeSet?: ChangeSet | null): DataTypeState | null;
508
508
  setDataType(dataType: DataTypeState | null, changeSet?: ChangeSet | null): ArgumentDeclarationState;
509
509
  removeDataType(): ArgumentDeclarationState;
510
+ syncWithImplementation(changeSet?: ChangeSet | null): IChangeSet<ArgumentDeclarationState>;
510
511
  }
511
512
 
512
513
  export declare type ArgumentDeclarationTypesUnion = IArgumentDeclaration | IArgumentDeclarationTransfer | IArgumentDeclarationShallowTransfer | IArgumentDeclarationGenerationTarget;
@@ -14624,6 +14625,7 @@ export declare class ReturnDeclarationState extends VersionedState implements IR
14624
14625
  getCounterparts(): ReturnDeclarationState[];
14625
14626
  inferDataTypeFromCounterparts(changeSet?: ChangeSet | null): ReturnDeclarationState;
14626
14627
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
14628
+ syncWithImplementation(changeSet?: ChangeSet | null): IChangeSet<ReturnDeclarationState>;
14627
14629
  }
14628
14630
 
14629
14631
  export declare type ReturnDeclarationTypesUnion = IReturnDeclaration | IReturnDeclarationTransfer | IReturnDeclarationShallowTransfer | IReturnDeclarationGenerationTarget;