@slimlib/store 1.5.0 → 1.5.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -98,7 +98,7 @@ import { SlimlibStore } from '@slimlib/store/angular';
98
98
 
99
99
  // create store
100
100
  @Injectable()
101
- export class StoreName extends SlimlibStore {
101
+ export class StoreName extends SlimlibStore<State> {
102
102
  constructor() {
103
103
  super(/*Initial state*/{ field: 123 }});
104
104
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "type": "module",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "name": "@slimlib/store",
5
5
  "description": "Simple Proxy-based store for SPA",
6
6
  "license": "MIT",