fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-19 14:38:29 +00:00
parent 10d1bb35ce
commit e810bd9473

View File

@ -5,7 +5,7 @@ export interface IWebStoreOptions {
storeName: string;
}
export class WebStore<T> {
export class WebStore<T = any> {
public db: plugins.idb.IDBPDatabase;
public objectStore: plugins.idb.IDBPObjectStore;
public options: IWebStoreOptions;