@idealyst/storage 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/storage",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Cross-platform storage abstraction for React and React Native",
|
|
5
5
|
"documentation": "https://github.com/IdealystIO/idealyst-framework/tree/main/packages/storage#readme",
|
|
6
6
|
"readme": "README.md",
|
package/src/index.ts
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import BaseStorage from './storage';
|
|
2
|
+
|
|
3
|
+
// For non-platform-specific imports, export the class (not an instance)
|
|
4
|
+
// Platform-specific entry points (index.native.ts, index.web.ts) export instances
|
|
5
|
+
export { BaseStorage as Storage };
|
|
6
|
+
export default BaseStorage;
|
|
2
7
|
export * from './types';
|