From b1586354e97d7549996f558cfba2dd9beb4a03d1 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 2 Oct 2023 19:10:30 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/webstore.classes.webstore.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 3b41e85..622a1c1 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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' } diff --git a/ts/webstore.classes.webstore.ts b/ts/webstore.classes.webstore.ts index eb63154..206dec9 100644 --- a/ts/webstore.classes.webstore.ts +++ b/ts/webstore.classes.webstore.ts @@ -7,7 +7,6 @@ export interface IWebStoreOptions { export class WebStore { public db: plugins.idb.IDBPDatabase; - public objectStore: plugins.idb.IDBPObjectStore; public options: IWebStoreOptions; private initCalled: boolean = false; private readyDeferred = plugins.smartpromise.defer();