storage-node.d.ts 284 B

12345678910
  1. import { Storage } from './storage';
  2. export declare class StorageNode implements Storage {
  3. private prefix;
  4. constructor(id: string);
  5. getValues(): Promise<unknown[]>;
  6. get(key: string): Promise<any>;
  7. set(key: string, value: any): Promise<void>;
  8. private getMap;
  9. }