absolute icon indicating copy to clipboard operation
absolute copied to clipboard

Implement Indexed DB wrapper API

Open romandev opened this issue 8 years ago • 2 comments

The API set should include the following things at least:

[
  Constructor(string dbName)
]
interface IndexedDB {
  Promise<void> set(string key, object value);
  Promise<object> get(string key);
  Promise<object> remove(string key);
};

romandev avatar Oct 23 '17 03:10 romandev

@yeonsuyam Hi, are you working on this?

romandev avatar Oct 30 '17 23:10 romandev

@romandev I had a schedule that I had to handle urgently, and I was delayed. Sorry. I will start quickly and let you know the progress.

yeonsuyam avatar Nov 01 '17 15:11 yeonsuyam