Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Indexed DB wrapper API #496

Open
romandev opened this issue Oct 23, 2017 · 2 comments
Open

Implement Indexed DB wrapper API #496

romandev opened this issue Oct 23, 2017 · 2 comments

Comments

@romandev
Copy link
Member

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
Copy link
Member Author

@yeonsuyam Hi, are you working on this?

@yeonsuyam
Copy link
Contributor

@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 added a commit to yeonsuyam/absolute that referenced this issue Nov 8, 2017
This is an initial implementation to provide IndexedDB wrapper APIs to client app.
The APIs always return false right now and we can implement them later.
romandev pushed a commit that referenced this issue Nov 8, 2017
This is an initial implementation to provide IndexedDB wrapper APIs to
client app. The APIs always return false right now and we can implement
them later.

ISSUE=#496
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants