( response: HttpServerResponse.HttpServerResponse, name: string, value: string, options: typeof RESPONSE_COOKIE_OPTIONS, )
| 134 | }; |
| 135 | |
| 136 | const setResponseCookie = ( |
| 137 | response: HttpServerResponse.HttpServerResponse, |
| 138 | name: string, |
| 139 | value: string, |
| 140 | options: typeof RESPONSE_COOKIE_OPTIONS, |
| 141 | ) => HttpServerResponse.setCookieUnsafe(response, name, value, options); |
| 142 | |
| 143 | const deleteResponseCookie = (response: HttpServerResponse.HttpServerResponse, name: string) => |
| 144 | HttpServerResponse.setCookieUnsafe(response, name, "", DELETE_COOKIE_OPTIONS); |