* Formats an HTTP 'Set-Cookie' header based on the server.options.state where: * @param cookies - a single object or an array of object where each contains: * * name - the cookie name. * * value - the cookie value. * * options - cookie configuration to override the server setting
(cookies: ServerStateFormat | ServerStateFormat[])
| 67 | * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-async-serverstatesformatcookies) |
| 68 | */ |
| 69 | format(cookies: ServerStateFormat | ServerStateFormat[]): Promise<string>; |
| 70 | |
| 71 | /** |
| 72 | * Parses an HTTP 'Cookies' header based on the server.options.state where: |