UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 277 B
import { IterableX } from '../../iterable/iterablex.js'; /** * @ignore */ export declare function flatProto<T>(this: IterableX<T>, depth?: number): IterableX<T>; declare module '../../iterable/iterablex' { interface IterableX<T> { flat: typeof flatProto; } }