Skip to content

Commit 05babdd

Browse files
feat(signals): remove union type from models
1 parent 7c8e98c commit 05babdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/signals/src/signal-store-models.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ export type StateSignals<State> = IsKnownRecord<Prettify<State>> extends true
1111
}
1212
: {};
1313

14-
export type SignalsDictionary = Record<string | symbol, Signal<unknown>>;
14+
export type SignalsDictionary = Record<string, Signal<unknown>>;
1515

16-
export type MethodsDictionary = Record<string | symbol, Function>;
16+
export type MethodsDictionary = Record<string, Function>;
1717

1818
export type SignalStoreHooks = {
1919
onInit?: () => void;

0 commit comments

Comments
 (0)