Interface representing the configuration for storage locale.

interface StorageLocaleConfig {
    key: string;
    useSessionStorage: boolean;
}

Properties

key: string

The key used to store the locale.

useSessionStorage: boolean

Indicates whether to use session storage.