@olakai/sdk
Version:
This document demonstrates how to use the Olakai SDK with all its features.
11 lines • 331 B
TypeScript
import { StorageAdapter } from ".";
/**
* Browser localStorage adapter
*/
export declare class LocalStorageAdapter implements StorageAdapter {
getItem(key: string): string | null;
setItem(key: string, value: string): void;
removeItem(key: string): void;
clear(): void;
}
//# sourceMappingURL=localStorage.d.ts.map