@elyx-code/project-logic-tree 0.0.6497 → 0.0.6498

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
@@ -5738,6 +5738,8 @@ export declare function filterOutDuplicateErrors(errors: (EntityGenerationError
5738
5738
 
5739
5739
  export declare function findEntityFromKeys(keys: string[], project: ProjectState): DefinitionEntityState | null;
5740
5740
 
5741
+ export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
5742
+
5741
5743
  export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
5742
5744
  ancestor: CallerEntityState | null;
5743
5745
  callType: 'success' | 'error' | 'entry' | 'loop-body' | null;