Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MandarineSecurity.Sessions.SessionCookie

import type { MandarineSecurity } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts"; 

const { SessionCookie } = MandarineSecurity.Sessions;
interface SessionCookie {
httpOnly?: boolean;
maxAge?: number | null;
path?: string;
secure?: boolean;
}

§Properties

§
httpOnly?: boolean
[src]
§
maxAge?: number | null
[src]
§
path?: string
[src]
§
secure?: boolean
[src]