Update .bashrc
[dotfiles/.git] / operators / defaultIfEmpty.d.ts
1 import { OperatorFunction, MonoTypeOperatorFunction } from '../types';
2 export declare function defaultIfEmpty<T>(defaultValue?: T): MonoTypeOperatorFunction<T>;
3 export declare function defaultIfEmpty<T, R>(defaultValue?: R): OperatorFunction<T, T | R>;