class NestCookies
implements ICookies
import { NestCookies } from "https://deno.land/x/deno_nest@v3.15.1/modules/oak/src/cookies.ts";
Constructors
new
NestCookies(context: OakContext)Methods
delete(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>