fix(core): update

This commit is contained in:
Philipp Kunz 2023-10-02 19:10:30 +02:00
parent ccae316e29
commit b1586354e9
2 changed files with 1 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/webstore',
version: '2.0.11',
version: '2.0.12',
description: 'high performance storage in the browser using indexed db'
}

View File

@ -7,7 +7,6 @@ export interface IWebStoreOptions {
export class WebStore<T = any> {
public db: plugins.idb.IDBPDatabase;
public objectStore: plugins.idb.IDBPObjectStore;
public options: IWebStoreOptions;
private initCalled: boolean = false;
private readyDeferred = plugins.smartpromise.defer();