git » sdk » commit ae70976

Get rid of errors when using from a ts project in strict mode

author Stephen Paul Weber
2025-10-25 06:00:54 UTC
committer Stephen Paul Weber
2025-10-25 06:00:54 UTC
parent 198a3f01fb228951db1f93c8487cd60f18964d3b

Get rid of errors when using from a ts project in strict mode

npm/index.ts +2 -2

diff --git a/npm/index.ts b/npm/index.ts
index a8f0235..9ceb01f 100644
--- a/npm/index.ts
+++ b/npm/index.ts
@@ -38,10 +38,10 @@ export import UiState = enums.UiState;
 export import UserState = enums.UserState;
 
 export namespace persistence {
-	export import IDB = IDBjs;
+	export const IDB = IDBjs as any;
 	export import KeyValueStore = borogove.persistence.KeyValueStore;
 	export import MediaStore = borogove.persistence.MediaStore;
-	export import MediaStoreCache = MediaStoreCachejs;
+	export const MediaStoreCache = MediaStoreCachejs as any;
 	export import Dummy = borogove.persistence.Dummy;
 	export import Sqlite = borogove.persistence.Sqlite;
 }