@olakai/sdk
Version:
This document demonstrates how to use the Olakai SDK with all its features.
12 lines • 377 B
TypeScript
import { StorageAdapter } from ".";
/**
* In-memory storage adapter (global variable storage)
*/
export declare class MemoryStorageAdapter implements StorageAdapter {
private storage;
getItem(key: string): string | null;
setItem(key: string, value: string): void;
removeItem(key: string): void;
clear(): void;
}
//# sourceMappingURL=memoryStorage.d.ts.map