import { type CookiesSetDeleteOptions } from "https://deno.land/x/deno_nest@v3.15.1/src/interfaces/CookiesSetDeleteOptions.ts";
Properties
optional
expires: DateFor use in situations where requests are presented to Deno as "insecure" but are otherwise secure and so secure cookies can be treated as secure.
When signed is true, you must provide a secret string signedSecret
to be used for signing in Hono
or set keys
when app is created.
Such as:
const app = await NestFactory.create(AppModule, Router, {
keys: ["nest"],
});