Interface for reading cookies from an incoming request.
getAllCookies():Promise<Map<string,string>>
Retrieves all cookies from the request.
Promise<Map<string, string>>
getCookie(name:string):Promise<string|undefined>
Retrieves a single cookie value by name.
| Parameter | Type | Description |
|---|---|---|
name | string | The name of the cookie to retrieve. |
Promise<string | undefined>