| 1234567891011 |
- import { Storage } from './storage';
- export declare class StorageNode implements Storage {
- private prefix;
- constructor(id: string);
- getValues(): Promise<unknown[]>;
- get(key: string): Promise<any>;
- put(key: string, value: any): Promise<void>;
- set(key: string, value: any): Promise<void>;
- private getMap;
- }
|