@elyx-code/project-logic-tree 0.0.6962 → 0.0.6964
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 +67 -67
- package/dist/index.d.ts +4 -1
- package/dist/index.js +7118 -6673
- package/package.json +1 -1
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
|
|
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
|
|