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