@elyx-code/project-logic-tree 0.0.6701 → 0.0.6702

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
@@ -13920,6 +13920,8 @@ export declare function flattenCallers(entity: CallableEntityState): CallerEntit
13920
13920
 
13921
13921
  export declare function flattenCalls(entities: CallableEntityState[]): CallableEntityState[];
13922
13922
 
13923
+ export declare function flattenCallsAsync(entities: CallableEntityState[], options?: YieldOptions): Promise<CallableEntityState[]>;
13924
+
13923
13925
  export declare function flattenCanvasAncestorsUntil(entity: CanvasEntityState, until: CanvasEntityState): {
13924
13926
  list: CanvasEntityState[];
13925
13927
  last: CanvasEntityState | null;
@@ -13993,6 +13995,8 @@ export declare function flattenDetachedBranch(entity: CanvasEntityState): Canvas
13993
13995
 
13994
13996
  export declare function flattenElementCalls(element: CallerEntityState): CallableEntityState[];
13995
13997
 
13998
+ export declare function flattenElementCallsAsync(element: CallerEntityState, options?: YieldOptions): Promise<CallableEntityState[]>;
13999
+
13996
14000
  export declare function flattenElementCallsOnTheSameScope(element: CallerEntityState): CallableEntityState[];
13997
14001
 
13998
14002
  export declare function flattenElementCallsWithCallType(element: CallerEntityState): {