iter-tools-es
Version:
The iterable toolbox
5 lines • 447 B
TypeScript
import { AsyncWrappable } from '../../types/async-iterable';
declare function asyncStartsWith(same: (a: any, b: any) => boolean, value: any): (iterable: AsyncWrappable<any>) => Promise<boolean>;
declare function asyncStartsWith(same: (a: any, b: any) => boolean, value: any, iterable: AsyncWrappable<any>): Promise<boolean>;
declare function asyncStartsWith(value: any, iterable: AsyncWrappable<any>): Promise<boolean>;
export { asyncStartsWith };