linwenling
2023-10-28 31d4f1af2415091ce8171a48372795c0f1a16e14
1
2
3
import { OperatorFunction, MonoTypeOperatorFunction } from '../types';
export declare function defaultIfEmpty<T>(defaultValue?: T): MonoTypeOperatorFunction<T>;
export declare function defaultIfEmpty<T, R>(defaultValue?: R): OperatorFunction<T, T | R>;