interface Cookieimport { type Cookie } from "https://deno.land/std@0.82.0/http/mod.ts"; Propertiesname: stringName of the cookie. value: stringValue of the cookie. optionalexpires: DateExpiration date of the cookie. optionalmaxAge: numberMax-Age of the Cookie. Must be integer superior to 0. optionaldomain: stringSpecifies those hosts to which the cookie will be sent. optionalpath: stringIndicates a URL path that must exist in the request. optionalsecure: booleanIndicates if the cookie is made using SSL & HTTPS. optionalhttpOnly: booleanIndicates that cookie is not accessible via JavaScript. * optionalsameSite: SameSiteAllows 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"