UNPKG

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.

18 lines (17 loc) 306 B
/** * @internal */ export declare class RawSha256 { private state; private temp; private buffer; private bufferLength; private bytesHashed; /** * @internal */ finished: boolean; update(data: Uint8Array): void; digest(): Uint8Array; private hashBuffer; }