Key value storage

Declaration

const kvStorage: KVStorage

Interface

interface KVStorage {
  get(key: string): Promise<any>;
  set(key: string, value: any): Promise<void>;
}

Last updated