@hypernetlabs/utils
Version:
Utilities used by Hypernet Labs packages
10 lines • 415 B
TypeScript
export interface 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;
}
export declare const ILocalStorageUtilsType: unique symbol;
//# sourceMappingURL=ILocalStorageUtils.d.ts.map