mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 15:23:47 -05:00
4 lines
258 B
TypeScript
4 lines
258 B
TypeScript
import { OperatorFunction, MonoTypeOperatorFunction } from '../interfaces';
|
|
export declare function defaultIfEmpty<T>(defaultValue?: T): MonoTypeOperatorFunction<T>;
|
|
export declare function defaultIfEmpty<T, R>(defaultValue?: R): OperatorFunction<T, T | R>;
|