/** * Array utility methods. */ export declare class ArrayUtility { /** * Returns `true` if content of the two given byte arrays are equal; `false` otherwise. */ static byteArraysEqual(array1: Uint8Array, array2: Uint8Array): boolean; /** * Asynchronously iterates an {AsyncGenerator} to return all the values in an array. */ static fromAsyncGenerator(iterator: AsyncGenerator): Promise>; /** * Generic asynchronous sort method. */ static asyncSort(array: T[], asyncComparer: (a: T, b: T) => Promise): Promise; } //# sourceMappingURL=array.d.ts.map