Interface ResponseData<TOpaque>

interface ResponseData<TOpaque = null> {
    body: BodyReadable & BodyMixin;
    context: object;
    headers: IncomingHttpHeaders;
    opaque: TOpaque;
    statusCode: number;
    statusText: string;
    trailers: Record<string, string>;
}

Properties§

§body: BodyReadable & BodyMixin
§context: object
§headers: IncomingHttpHeaders
§opaque: TOpaque
§statusCode: number
§statusText: string
§trailers: Record<string, string>