@hypernetlabs/utils
Version:
Utilities used by Hypernet Labs packages
10 lines • 446 B
TypeScript
import { ILocalStorageUtils } from "./ILocalStorageUtils";
export declare class LocalStorageUtils implements ILocalStorageUtils {
getItem(key: string): string | null;
setItem(key: string, value: string): void;
removeItem(key: string): void;
getSessionItem(key: string): string | null;
setSessionItem(key: string, value: string): void;
removeSessionItem(key: string): void;
}
//# sourceMappingURL=LocalStorageUtils.d.ts.map