* Access: read only and the public podium interface. * The request.events supports the following events: * * 'peek' - emitted for each chunk of payload data read from the client connection. The event method signature is function(chunk, encoding). * * 'finish' - emitted when the reques
(criteria: 'peek', listener: PeekListener)
| 136 | * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestevents) |
| 137 | */ |
| 138 | once(criteria: 'peek', listener: PeekListener): this; |
| 139 | once(criteria: 'peek'): Promise<Parameters<PeekListener>>; |
| 140 | |
| 141 | once(criteria: 'finish' | 'disconnect', listener: (data: undefined) => void): this; |
no outgoing calls
no test coverage detected