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

MandarineSecurity.Sessions.SessionContainer

import type { MandarineSecurity } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/security-core/mandarine-security.ns.ts"; 

const { SessionContainer } = MandarineSecurity.Sessions;

Represents the object of the configuration for the Session Container

interface SessionContainer {
cookie?: SessionCookie;
genId?: Function;
keys: string[];
resave?: boolean;
rolling?: boolean;
saveUninitialized?: boolean;
sessionPrefix?: string;
store?: SessionStore;
}

§Properties

§
genId?: Function
[src]
§
keys: string[]
[src]
§
resave?: boolean
[src]
§
rolling?: boolean
[src]
§
saveUninitialized?: boolean
[src]
§
sessionPrefix?: string
[src]