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