StreamableMethod type
応答本文を生ストリームとして取得することをサポートするメソッドの型を定義します。
type StreamableMethod<TResponse> = PromiseLike<TResponse> & {
asBrowserStream: () => Promise<HttpBrowserStreamResponse>
asNodeStream: () => Promise<HttpNodeStreamResponse>
}