UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

6 lines (5 loc) 320 B
import { ChecksumConstructor, HashConstructor } from "@smithy/types"; /** * A function that, given a hash constructor and a string, calculates the hash of the string. */ export declare const stringHasher: (checksumAlgorithmFn: ChecksumConstructor | HashConstructor, body: any) => Promise<Uint8Array<ArrayBufferLike>>;