@elyx-code/project-logic-tree 0.0.6685 → 0.0.6686
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.cjs +73 -73
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4139 -4129
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13818,6 +13818,8 @@ export declare function filterOutDuplicateEntitiesAsync(entities: (EntityState |
|
|
|
13818
13818
|
|
|
13819
13819
|
export declare function filterOutDuplicateErrors(errors: (EntityGenerationError | EntityError)[]): EntityGenerationError[] | EntityError[];
|
|
13820
13820
|
|
|
13821
|
+
export declare function filterOutDuplicateErrorsAsync(errors: (EntityGenerationError | EntityError)[], options?: YieldOptions): Promise<EntityGenerationError[] | EntityError[]>;
|
|
13822
|
+
|
|
13821
13823
|
export declare function findEntityFromKeys(keys: string[], project: ProjectState): DefinitionEntityState | null;
|
|
13822
13824
|
|
|
13823
13825
|
export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
|