@creatio/base 0.820.1 → 0.822.0
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/index.d.ts
CHANGED
|
@@ -2561,13 +2561,14 @@ export declare function ɵisGuid(value: unknown): boolean;
|
|
|
2561
2561
|
* @extends {ɵSingleFilter}
|
|
2562
2562
|
*/
|
|
2563
2563
|
export declare class ɵIsNullFilter extends ɵSingleFilter {
|
|
2564
|
-
/* Excluded from this release type: _instanceOfKey */
|
|
2565
|
-
/* Excluded from this release type: _instanceOfKeys */
|
|
2566
|
-
constructor(comparisonType: ɵComparisonType, leftExpression: ɵBaseExpression);
|
|
2567
2564
|
/**
|
|
2568
2565
|
* @description Flag that indicates if expression is empty or not.
|
|
2569
2566
|
*/
|
|
2570
|
-
|
|
2567
|
+
isNull: boolean;
|
|
2568
|
+
/* Excluded from this release type: _instanceOfKey */
|
|
2569
|
+
/* Excluded from this release type: _instanceOfKeys */
|
|
2570
|
+
constructor(comparisonType: ɵComparisonType.Is_null | ɵComparisonType.Is_not_null, leftExpression: ɵBaseExpression);
|
|
2571
|
+
private static _getComparisonType;
|
|
2571
2572
|
/**
|
|
2572
2573
|
* @description Parses isNull filter from json.
|
|
2573
2574
|
* @public
|