blob: bd667915be0d69b2fca9b67322f842ece2911f9d [file] [log] [blame]
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>;