* For context [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-routeoptionsjson)
| 36 | * For context [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-routeoptionsjson) |
| 37 | */ |
| 38 | interface StringifyArguments { |
| 39 | /** the replacer function or array. Defaults to no action. */ |
| 40 | replacer?: StringifyReplacer | undefined; |
| 41 | /** number of spaces to indent nested object keys. Defaults to no indentation. */ |
| 42 | space?: StringifySpace | undefined; |
| 43 | /* string suffix added after conversion to JSON string. Defaults to no suffix. */ |
| 44 | suffix?: string | undefined; |
| 45 | /* calls Hoek.jsonEscape() after conversion to JSON string. Defaults to false. */ |
| 46 | escape?: boolean | undefined; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | export namespace Lifecycle { |
nothing calls this directly
no outgoing calls
no test coverage detected