Remove unnecessary generic

This commit is contained in:
Danila Fedorin 2021-08-16 16:27:28 -07:00
parent 410bd4ab8b
commit 08e7616897

View file

@ -56,7 +56,7 @@ export class Transaction {
return new Store(this._txn.objectStore(name), this); return new Store(this._txn.objectStore(name), this);
} }
_store<R>(name: string, mapStore: (idbStore: Store<any>) => R): R { _store(name: string, mapStore: (idbStore: Store<any>) => any): any {
if (!this._stores[name]) { if (!this._stores[name]) {
const idbStore = this._idbStore(name); const idbStore = this._idbStore(name);
this._stores[name] = mapStore(idbStore); this._stores[name] = mapStore(idbStore);