@olakai/sdk
Version:
This document demonstrates how to use the Olakai SDK with all its features.
16 lines • 477 B
TypeScript
import { StorageAdapter } from ".";
/**
* Node.js file-based storage adapter
*/
export declare class FileStorageAdapter implements StorageAdapter {
private cacheDir;
private isAvailable;
constructor(customCacheDir?: string);
private ensureCacheDir;
private getFilePath;
getItem(key: string): string | null;
setItem(key: string, value: string): void;
removeItem(key: string): void;
clear(): void;
}
//# sourceMappingURL=fileStorage.d.ts.map