uint8array.d.ts 235 B

12345
  1. export declare function uint8ArrayConcat(...parts: Uint8Array[]): Uint8Array;
  2. /**
  3. * Returns true if the two passed Uint8Arrays have the same content
  4. */
  5. export declare function uint8ArrayEquals(a: Uint8Array, b: Uint8Array): boolean;