UNPKG

@bitpatty/imgproxy-url-builder

Version:

A TypeScript helper library for building imgproxy URLs

9 lines (8 loc) 236 B
/** * Calculates the SHA256 of the specified byte array * * @param bytes The Uint8Array of the byte array * @returns The SHA256 as a Uint32Array */ declare const sha256: (bytes: Uint8Array) => Uint32Array; export { sha256 };