lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
17 lines (16 loc) • 380 B
TypeScript
import type { Checksum, SourceData } from "@smithy/types";
/**
* @internal
*/
export declare class Md5 implements Checksum {
private state;
private buffer;
private bufferLength;
private bytesHashed;
private finished;
constructor();
update(sourceData: SourceData): void;
digest(): Promise<Uint8Array>;
private hashBuffer;
reset(): void;
}