@unilogin/sdk
Version:
SDK is a JS library, that communicates with relayer. SDK allows managing contract, by creating basic contract-calling messages.
8 lines • 314 B
TypeScript
import { IStorageService } from '../models/IStorageService';
export declare class MemoryStorageService implements IStorageService {
private store;
get(key: string): string | null;
set(key: string, value: string): void;
remove(key: string): void;
}
//# sourceMappingURL=MemoryStorageService.d.ts.map