ts-lambda-api - v2.5.2
    Preparing search index...

    Interface SdkStreamMixin

    The interface contains mix-in utility functions to transfer the runtime-specific stream implementation to specified format. Each stream can ONLY be transformed once.

    interface SdkStreamMixin {
        transformToByteArray: () => Promise<Uint8Array<ArrayBufferLike>>;
        transformToString: (encoding?: string) => Promise<string>;
        transformToWebStream: () => ReadableStream;
    }
    Index

    Properties

    transformToByteArray: () => Promise<Uint8Array<ArrayBufferLike>>
    transformToString: (encoding?: string) => Promise<string>
    transformToWebStream: () => ReadableStream