interface ISessionConfig {
    cookieDomain?: string;
    getNewId?: ((idLength?: number) => string);
    idLength?: number;
    namePrefix?: string;
    sessionCookiePostfix?: string;
    sessionExpirationMs?: number;
    sessionRenewalMs?: number;
}

Properties

cookieDomain?: string

Avoid using this value to override the cookie manager cookie domain.

getNewId?: ((idLength?: number) => string)
idLength?: number
namePrefix?: string
sessionCookiePostfix?: string
sessionExpirationMs?: number
sessionRenewalMs?: number