10000 feat(signals): remove union type from models · ngrx/platform@05babdd · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
feat(signals): remove union type from models
Browse files Browse the repository at this point in the history
  • Loading branch information
rainerhahnekamp committed Jan 20, 2025
1 parent 7c8e98c commit 05babdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/signals/src/signal-store-models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export type StateSignals<State> = IsKnownRecord<Prettify<State>> extends true
}
: {};

export type SignalsDictionary = Record<string | symbol, Signal<unknown>>;
export type SignalsDictionary = Record<string, Signal<unknown>>;

export type MethodsDictionary = Record<string | symbol, Function>;
export type MethodsDictionary = Record<string, Function>;

export type SignalStoreHooks = {
onInit?: () => void;
Expand Down

0 comments on commit 05babdd

Please sign in to comment.
0