Skip to main content
Module

x/alosaur/src/security/session/src/session.interface.ts>SessionInterface

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
interface SessionInterface
import { type SessionInterface } from "https://deno.land/x/alosaur@v0.38.0/src/security/session/src/session.interface.ts";

Properties

sessionId: string
sessionKey: string

Methods

get<T>(key: string): Promise<T>
set<T>(key: string, value: T): Promise<void>