Interface representing the configuration for cookie locale.

interface CookieLocaleConfig {
    cookieExpiresMinutes: number;
    cookieName: string;
    cookiePath: string;
}

Properties

cookieExpiresMinutes: number

The expiration time of the cookie in minutes.

cookieName: string

The name of the cookie.

cookiePath: string

The path of the cookie.