fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-19 14:02:15 +00:00
parent fca8c434f6
commit 5860066621

View File

@ -22,7 +22,7 @@ export class WebStore<T = any> {
});
}
async get(key: string) {
async get(key: string): Promise<T> {
return this.db.get(this.options.storeName, key);
}