@reforgium/statum 3.0.0 → 3.0.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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.0.0",
2
+ "version": "3.0.1",
3
3
  "name": "@reforgium/statum",
4
4
  "description": "Signals-first query and data stores for Angular",
5
5
  "author": "rtommievich",
@@ -733,7 +733,7 @@ type PagedQueryStoreProviderConfig = {
733
733
  * effect(() => console.log(ds.items(), ds.loading()));
734
734
  * ```
735
735
  */
736
- declare class PagedQueryStore<ItemsType extends object, FilterType = unknown> {
736
+ declare class PagedQueryStore<ItemsType extends AnyDict, FilterType = AnyDict> {
737
737
  #private;
738
738
  private route;
739
739
  config: PagedQueryStoreConfig<ItemsType, FilterType>;