parser-multipart
    Preparing search index...

    Class ResponseParsed

    Implements

    • Response
    Index

    Constructors

    Accessors

    • get body(): ReadableStream<Uint8Array<ArrayBufferLike>>

      Returns ReadableStream<Uint8Array<ArrayBufferLike>>

    • get headers(): Headers

      The headers read-only property of the with the response.

      MDN Reference

      Returns Headers

    • get ok(): boolean

      The ok read-only property of the Response interface contains a Boolean stating whether the response was successful (status in the range 200-299) or not.

      MDN Reference

      Returns boolean

    • get redirected(): boolean

      The redirected read-only property of the Response interface indicates whether or not the response is the result of a request you made which was redirected.

      MDN Reference

      Returns boolean

    • get status(): number

      The status read-only property of the Response interface contains the HTTP status codes of the response.

      MDN Reference

      Returns number

    • get statusText(): string

      The statusText read-only property of the Response interface contains the status message corresponding to the HTTP status code in Response.status.

      MDN Reference

      Returns string

    • get type(): ResponseType

      The type read-only property of the Response interface contains the type of the response.

      MDN Reference

      Returns ResponseType

    • get url(): string

      The url read-only property of the Response interface contains the URL of the response.

      MDN Reference

      Returns string

    Methods

    • Returns Promise<Uint8Array<ArrayBufferLike>>