@signaltree/core 5.0.4 → 5.0.6

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@signaltree/core",
3
- "version": "5.0.4",
3
+ "version": "5.0.6",
4
4
  "description": "Lightweight, type-safe signal-based state management for Angular. Core package providing hierarchical signal trees, basic entity management, and async actions.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -1 +1 @@
1
- export declare function entityMap<E extends Record<string, unknown>, K extends string | number = string>(config?: Partial<EntityConfig<E, K>>): unknown;
1
+ export {};
@@ -101,8 +101,7 @@ export type SignalTree<T> = NodeAccessor<T> & {
101
101
  canUndo?: () => boolean;
102
102
  canRedo?: () => boolean;
103
103
  getCurrentIndex?: () => number;
104
- [key: string]: unknown;
105
- };
104
+ } & Record<string, unknown>;
106
105
  export type TreePreset = 'basic' | 'performance' | 'development' | 'production';
107
106
  export interface TreeConfig {
108
107
  batchUpdates?: boolean;