lunchclass / absolute

Absolute is a web-based O2O(Online to Offline) platform like Siren-Order for Starbucks. We are focused on creating the platform that is portable, cheaper, easier, decentralized and appless.
Apache License 2.0
103 stars 31 forks source link

Implement Indexed DB wrapper API #496

Open romandev opened 6 years ago

romandev commented 6 years ago

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 commented 6 years ago

@yeonsuyam Hi, are you working on this?

yeonsuyam commented 6 years ago

@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.