Skip to content

Commit 085bff3

Browse files
author
Elson Correia
committed
export AppState
1 parent 5465ef4 commit 085bff3

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

dist/client-web-storage.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/client-web-storage.min.js.map

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "client-web-storage",
33
"description": "Powerful Web Application Data Storage and State Management Solution.",
4-
"version": "1.7.0",
4+
"version": "1.7.1",
55
"main": "./index.js",
66
"types": "./index.d.ts",
77
"repository": {

src/client.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {ArrayOf} from './CustomTypes/ArrayOf';
44
import {OneOf} from './CustomTypes/OneOf';
55
import {SchemaValue} from './SchemaValue';
66
import {ClientStore} from './ClientStore';
7+
import {AppState} from './AppState';
78
import {EventType, StorageType} from './types';
89

910
// @ts-ignore
@@ -17,6 +18,7 @@ if (window) {
1718
OneOf,
1819
ClientStore,
1920
EventType,
20-
StorageType
21+
StorageType,
22+
AppState
2123
}
2224
}

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ export {ArrayOf} from './CustomTypes/ArrayOf';
55
export {OneOf} from './CustomTypes/OneOf';
66
export {SchemaValue} from './SchemaValue';
77
export {ClientStore} from './ClientStore';
8+
export {AppState} from './AppState';

0 commit comments

Comments
 (0)