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

Type Parameters

  • TOpaque = null

Properties

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