@elyx-code/project-logic-tree 0.0.6337 → 0.0.6339
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 +3 -1
- package/dist/index.js +1679 -1663
- package/dist/index.umd.cjs +161 -161
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11167,6 +11167,8 @@ export { operationValidation }
|
|
|
11167
11167
|
|
|
11168
11168
|
export declare type OperatorTypes = ComparisonOperatorTypes | StandaloneOperatorTypes;
|
|
11169
11169
|
|
|
11170
|
+
export declare function orderEntitiesForTraversal(entities: (Element_2 | ElementTransfer | EntityState | ElementShallowTransfer)[]): (Element_2 | ElementTransfer | EntityState | ElementShallowTransfer)[];
|
|
11171
|
+
|
|
11170
11172
|
export declare enum OutputMapDependencyField {
|
|
11171
11173
|
Declaration = "declaration",
|
|
11172
11174
|
DataTypeEntity = "data-type-entity"
|
|
@@ -13052,7 +13054,7 @@ export declare class Traverser {
|
|
|
13052
13054
|
flatRecord: Record<EntityId, Element_2 | ElementTransfer | EntityState | ElementShallowTransfer>;
|
|
13053
13055
|
allBuiltInEntityIds: string[];
|
|
13054
13056
|
private onGoingVisits;
|
|
13055
|
-
constructor(root
|
|
13057
|
+
constructor(root?: Element_2 | ElementTransfer | EntityState | ElementShallowTransfer);
|
|
13056
13058
|
flatten(entity: Element_2 | ElementTransfer | EntityState | ElementShallowTransfer): void;
|
|
13057
13059
|
private moveEntityAfterDependencies;
|
|
13058
13060
|
orderEntities(): void;
|