class Cookieimport { Cookie } from "https://deno.land/x/another_cookiejar@v5.0.1/mod.ts"; ConstructorsnewCookie(options?: CookieOptions)PropertiescreationDatecreationIndex: numberdomain: string | undefinedexpires: number | undefinedin milliseconds httpOnly: boolean | undefinedmaxAge: number | undefinedin seconds name: string | undefinedpath: string | undefinedsameSite: | "Lax" | "Strict" | "None" | undefinedsecure: boolean | undefinedvalue: string | undefinedMethodscanSendTo(url: string | Request | URL)clone()getCookieString()isExpired()isValid(): booleansetDomain(url: string | Request | URL)setExpires(exp: Date | number)setPath(url: string | Request | URL)toString()Static PropertiescookiesCreated: numberStatic Methodsfrom(cookieStr: string)