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