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.

23 lines (22 loc) 768 B
import { ChecksumConstructor } from "./checksum"; import { HashConstructor, StreamHasher } from "./crypto"; import { BodyLengthCalculator, Encoder } from "./util"; /** * @public */ export interface GetAwsChunkedEncodingStreamOptions { base64Encoder?: Encoder; bodyLengthChecker: BodyLengthCalculator; checksumAlgorithmFn?: ChecksumConstructor | HashConstructor; checksumLocationName?: string; streamHasher?: StreamHasher; } /** * @public * * A function that returns Readable Stream which follows aws-chunked encoding stream. * It optionally adds checksum if options are provided. */ export interface GetAwsChunkedEncodingStream<StreamType = any> { (readableStream: StreamType, options: GetAwsChunkedEncodingStreamOptions): StreamType; }