⚠️ Internal: This API is not publically exported by the package.
interface ResponseData {
    body: BodyReadable & BodyMixin;
    context: object;
    headers: IncomingHttpHeaders;
    opaque: unknown;
    statusCode: number;
    trailers: Record<string, string>;
}

Properties

context: object
opaque: unknown
statusCode: number
trailers: Record<string, string>