UNPKG

iter-tools-es

Version:
5 lines 406 B
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 };