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.

9 lines (8 loc) 319 B
import { SdkStream } from "@smithy/types"; import { Readable } from "stream"; /** * The function that mixes in the utility functions to help consuming runtime-specific payload stream. * * @internal */ export declare const sdkStreamMixin: (stream: unknown) => SdkStream<ReadableStream | Blob> | SdkStream<Readable>;