diff --git a/doc/api/http2.md b/doc/api/http2.md index bba049c1dc6098..7c3499f9b865f3 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -989,6 +989,34 @@ destroyed after either receiving an `RST_STREAM` frame from the connected peer, calling `http2stream.close()`, or `http2stream.destroy()`. Will be `undefined` if the `Http2Stream` has not been closed. +#### http2stream.sentHeaders + + +* Value: {[Headers Object][]} + +An object containing the outbound headers sent for this `Http2Stream`. + +#### http2stream.sentInfoHeaders + + +* Value: {[Headers Object][]\[\]} + +An array of objects containing the outbound informational (additional) headers +sent for this `Http2Stream`. + +#### http2stream.sentTrailers + + +* Value: {[Headers Object][]} + +An object containing the outbound trailers sent for this this `HttpStream`. + #### http2stream.session