UNPKG

@codibre/fluent-iterable

Version:

Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).

9 lines (8 loc) 252 B
import { FluentAsyncIterable } from '../base'; export interface ToAsyncFunction<T> { /** * Translates the iterable into a [[FluentAsyncIterable]]. * @returns The [[FluentAsyncIterable]] instance. */ (): FluentAsyncIterable<T>; }