@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.
- package/README.md +1 -1
- 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
|
}
|