Documentation
    Preparing search index...
    MultipartStream: Readable & {
        headers: { [key: string]: string };
        name: string;
        filename: string;
        bytes: number;
        file: MultipartFile;
    }

    Readable stream along with some extra data. This is what is passed to onFile handlers.

    Type Declaration

    • headers: { [key: string]: string }

      Headers associated with the multipart stream

    • name: string

      The form field name

    • filename: string

      The original filename from the client

    • bytes: number

      The number of bytes in the stream

    • file: MultipartFile

      The MultipartFile instance associated with this stream