@elyx-code/project-logic-tree 0.0.6589 → 0.0.6591
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 +1 -1
- package/dist/index.js +1099 -1067
- package/dist/index.umd.cjs +67 -67
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7055,7 +7055,7 @@ export declare function findEntityFromKeys(keys: string[], project: ProjectState
|
|
|
7055
7055
|
|
|
7056
7056
|
export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
|
|
7057
7057
|
|
|
7058
|
-
export declare function findNextCombinedSingleCallerAncestor(targetA: CallableEntityState, targetB: CallableEntityState, from?: CallerEntityState): {
|
|
7058
|
+
export declare function findNextCombinedSingleCallerAncestor(targetA: CallableEntityState | CallerEntityState, targetB: CallableEntityState | CallerEntityState, from?: CallerEntityState): {
|
|
7059
7059
|
ancestor: CallerEntityState | null;
|
|
7060
7060
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
7061
7061
|
};
|