@elyx-code/project-logic-tree 0.0.6406 → 0.0.6407

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
@@ -4364,6 +4364,8 @@ export declare class FunctionDeclarationState extends VersionedState implements
4364
4364
  addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
4365
4365
  removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
4366
4366
  getUniqueReturnDeclarations(): ReturnDeclarationState[];
4367
+ removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
4368
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
4367
4369
  }
4368
4370
 
4369
4371
  export declare type FunctionDeclarationTypesUnion = IFunctionDeclaration | IFunctionDeclarationTransfer | IFunctionDeclarationShallowTransfer | IFunctionDeclarationGenerationTarget;