@elyx-code/project-logic-tree 0.0.6963 → 0.0.6965

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
@@ -9903,7 +9903,10 @@ export declare enum BaseValueDescriptorIds {
9903
9903
  * @param dataTypeB
9904
9904
  * @returns
9905
9905
  */
9906
- export declare function checkAreDataTypesCompatible(dataTypeA: DataTypeState | null, dataTypeB: DataTypeState | null): IDataTypeCompatible | IDataTypeIncompatibile;
9906
+ export declare function checkAreDataTypesCompatible(dataTypeA: DataTypeState | null, dataTypeB: DataTypeState | null, options?: {
9907
+ ignoreTopListDif?: boolean;
9908
+ ignoreNestedListDif?: boolean;
9909
+ }): IDataTypeCompatible | IDataTypeIncompatibile;
9907
9910
 
9908
9911
  export declare function checkAreDefinitionEntitiesCompatibleAsDataType(sourceDefinitionEntity: DefinitionEntityState, targetDefinitionEntity: DefinitionEntityState): boolean;
9909
9912