@@ -3148,7 +3148,7 @@ export function isAbsent(value: Expr | string): BooleanExpr {
31483148 * ```
31493149 *
31503150 * @param value The expression to check.
3151- * @return A new {@code Expr } representing the 'isNaN ' check.
3151+ * @return A new {@code BooleanExpr } representing the 'isNull ' check.
31523152 */
31533153export function isNull ( value : Expr ) : BooleanExpr ;
31543154
@@ -3163,7 +3163,7 @@ export function isNull(value: Expr): BooleanExpr;
31633163 * ```
31643164 *
31653165 * @param value The name of the field to check.
3166- * @return A new {@code Expr } representing the 'isNaN ' check.
3166+ * @return A new {@code BooleanExpr } representing the 'isNull ' check.
31673167 */
31683168export function isNull ( value : string ) : BooleanExpr ;
31693169export function isNull ( value : Expr | string ) : BooleanExpr {
@@ -3181,7 +3181,7 @@ export function isNull(value: Expr | string): BooleanExpr {
31813181 * ```
31823182 *
31833183 * @param value The expression to check.
3184- * @return A new {@code Expr } representing the 'isNaN ' check.
3184+ * @return A new {@code BooleanExpr } representing the 'isNotNull ' check.
31853185 */
31863186export function isNotNull ( value : Expr ) : BooleanExpr ;
31873187
@@ -3196,7 +3196,7 @@ export function isNotNull(value: Expr): BooleanExpr;
31963196 * ```
31973197 *
31983198 * @param value The name of the field to check.
3199- * @return A new {@code Expr } representing the 'isNaN ' check.
3199+ * @return A new {@code BooleanExpr } representing the 'isNotNull ' check.
32003200 */
32013201export function isNotNull ( value : string ) : BooleanExpr ;
32023202export function isNotNull ( value : Expr | string ) : BooleanExpr {
@@ -3214,7 +3214,7 @@ export function isNotNull(value: Expr | string): BooleanExpr {
32143214 * ```
32153215 *
32163216 * @param value The expression to check.
3217- * @return A new {@code Expr } representing the 'isNotNaN' check.
3217+ * @return A new {@code BooleanExpr } representing the 'isNotNaN' check.
32183218 */
32193219export function isNotNan ( value : Expr ) : BooleanExpr ;
32203220
@@ -3229,7 +3229,7 @@ export function isNotNan(value: Expr): BooleanExpr;
32293229 * ```
32303230 *
32313231 * @param value The name of the field to check.
3232- * @return A new {@code Expr } representing the 'isNotNaN' check.
3232+ * @return A new {@code BooleanExpr } representing the 'isNotNaN' check.
32333233 */
32343234export function isNotNan ( value : string ) : BooleanExpr ;
32353235export function isNotNan ( value : Expr | string ) : BooleanExpr {
0 commit comments