UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 308 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function defaultIfEmptyProto<T>(this: IterableX<T>, defaultValue: T): IterableX<T>; declare module '../../iterable/iterablex' { interface IterableX<T> { defaultIfEmpty: typeof defaultIfEmptyProto; } }