serverless-spy
Version:
CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.
17 lines (16 loc) • 375 B
TypeScript
import { 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;
}