@codibre/fluent-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
5 lines (4 loc) • 307 B
TypeScript
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>;