Interface IRequest<S>

Express request.

S Type of the Session

interface IRequest<S> {
    cookieDomain: string;
    locale: string;
    session: S;
    getCookie<T>(name: string): T;
}

Type Parameters

Hierarchy

  • Request
    • IRequest

Properties

cookieDomain: string
locale: string
session: S

Methods