Invoked after the request body is fully sent.
()
| 229 | onBodySent?(chunk: Buffer): void; |
| 230 | /** Invoked after the request body is fully sent. */ |
| 231 | onRequestSent?(): void; |
| 232 | } |
| 233 | export type PipelineHandler<TOpaque = null> = (data: PipelineHandlerData<TOpaque>) => Readable |
| 234 | export type HttpMethod = Autocomplete<'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH'> |
no outgoing calls
no test coverage detected