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

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
@@ -2149,6 +2149,7 @@ export declare class BuiltInBaseEntityState extends VersionedState implements Ba
2149
2149
  get allBaseMethodsFromOriginalParents(): FunctionDeclarationState[];
2150
2150
  get allBasePropertiesFromOriginalParents(): PropertyState[];
2151
2151
  get allBasePropertiesFromExtendedAndImplementedEntities(): PropertyState[];
2152
+ get allBaseMethodsFromExtendedAndImplementedEntities(): (FunctionDeclarationState | ActionDescriptorState)[];
2152
2153
  get extendedPropertiesFromOriginalParents(): PropertyState[];
2153
2154
  get implementedPropertiesFromOriginalParents(): PropertyState[];
2154
2155
  get extendedProperties(): PropertyState[];
@@ -5738,6 +5739,8 @@ export declare function filterOutDuplicateErrors(errors: (EntityGenerationError
5738
5739
 
5739
5740
  export declare function findEntityFromKeys(keys: string[], project: ProjectState): DefinitionEntityState | null;
5740
5741
 
5742
+ export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
5743
+
5741
5744
  export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
5742
5745
  ancestor: CallerEntityState | null;
5743
5746
  callType: 'success' | 'error' | 'entry' | 'loop-body' | null;