Expand description
interface PersistStorage {
getItem(key: string): string | null;
removeItem(key: string): void;
setItem(key: string, value: string): void;
}interface PersistStorage {
getItem(key: string): string | null;
removeItem(key: string): void;
setItem(key: string, value: string): void;
}
Interface for Web Storage API used by
persist.This is here so projects without DOM types can use
persist