statsig-js
Version:
Statsig JavaScript client SDK for single user environments.
11 lines (10 loc) • 375 B
TypeScript
export default class StatsigLocalStorage {
static disabled: boolean;
private static fallbackSessionCache;
static getItem(key: string): string | null;
static setItem(key: string, value: string): void;
static removeItem(key: string): void;
static cleanup(): void;
private static canAccessStorageAccessible;
private static isStorageAccessible;
}