class NestCookies
implements ICookies
import { NestCookies } from "https://deno.land/x/deno_nest@v3.15.1/modules/hono/src/cookies.ts";
Constructors
new
NestCookies(context: HonoContext, keys?: string[])Methods
private
getSignedSecret(options?: CookiesGetOptions): string | false | undefineddelete(name: string, options?: CookiesSetDeleteOptions): ICookies
get(name: string, options?: CookiesGetOptions): Promise<string | false | undefined>
getAll(): Promise<Record<string, string>>
has(name: string, options?: CookiesGetOptions): Promise<boolean>