interface Cookieimport { type Cookie } from "https://dotland.deno.dev/std@0.181.0/http/mod.ts"; Propertiesname: stringName of the cookie. value: stringValue of the cookie. optionalexpires: Date | numberThe cookie's Expires attribute, either as an explicit date or UTC milliseconds. optionalmaxAge: numberThe cookie's Max-Age attribute, in seconds. Must be a non-negative integer. A cookie with a maxAge of 0 expires immediately. optionaldomain: stringThe cookie's Domain attribute. Specifies those hosts to which the cookie will be sent. optionalpath: stringThe cookie's Path attribute. A cookie with a path will only be included in the Cookie request header if the requested URL matches that path. optionalsecure: booleanThe cookie's Secure attribute. If true, the cookie will only be included in the Cookie request header if the connection uses SSL and HTTPS. optionalhttpOnly: booleanThe cookie's HTTPOnly attribute. If true, the cookie cannot be accessed via JavaScript. optionalsameSite: "Strict" | "Lax" | "None"Allows servers to assert that a cookie ought not to be sent along with cross-site requests. optionalunparsed: string[]Additional key value pairs with the form "key=value"