ujjwalguptaofficial / JsStore

A complete IndexedDB wrapper with SQL like syntax.
http://jsstore.net/
MIT License
849 stars 109 forks source link

Exports have been changed in 4.4 #285

Closed alekitto closed 2 years ago

alekitto commented 2 years ago

Description

After upgrading the library to 4.4.1 from 4.3.10, I have compilation errors in my React + typescript application similar to:

export 'Connection' (imported as 'Connection') was not found in 'jsstore' (possible exports: JsStore)
export 'DATA_TYPE' (imported as 'DATA_TYPE') was not found in 'jsstore' (possible exports: JsStore)
Delagen commented 2 years ago

Because now it expors JSStore property, but typings seems not changed

Awaiting for update

ujjwalguptaofficial commented 2 years ago

ohk let me see, it might be due to webpack 5 upgrade

ujjwalguptaofficial commented 2 years ago

fixed in v - 4.4.3. @Delagen @alekitto please have a look.

alekitto commented 2 years ago

Seems ok now. Thank you!