UNPKG

ts-flex-query

Version:
4 lines (3 loc) 262 B
import { Expression, PipeOperator } from '../../core'; /** Applies a fallback value if the input is undefined or null. */ export declare function ifUndefined<TIn, TFallback>(fallbackValue: Expression<TFallback>): PipeOperator<TIn, NonNullable<TIn> | TFallback>;