UNPKG

@codibre/fluent-iterable

Version:

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

5 lines (4 loc) 307 B
import { AnyIterable } from 'augmentative-iterable'; import { BasicIngredients } from './ingredients'; import { AnyMapper } from '../types-internal'; export declare function skipWhileRecipe({ filter, resolver }: BasicIngredients): <T>(this: AnyIterable<T>, baseCondition: AnyMapper<T>) => AnyIterable<any>;