UNPKG

@themineway/smart-storage-js

Version:

A TS/JS library that provides a smart and easy way to store data

9 lines 348 B
import { AStringConnector } from "../string-connector.abstract"; export declare class SessionStorageConnector extends AStringConnector { constructor(); rawGet(key: string): string | null; rawSet(key: string, value: string): void; remove(key: string): void; clear(): void; } //# sourceMappingURL=sessionstorage-connector.d.ts.map