Skip to content

Commit

Permalink
fix(signal-slice): extra selectors type
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Nov 14, 2023
1 parent fe48707 commit bdfe10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ngxtension/signal-slice/src/signal-slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type Selectors<TSignalValue> = {
};

type ExtraSelectors<TSelectors extends NamedSelectors> = {
[K in keyof TSelectors]: () => any;
[K in keyof TSelectors]: Signal<ReturnType<TSelectors[K]>>;
};

type Effects<TEffects extends NamedEffects> = {
Expand Down

0 comments on commit bdfe10b

Please sign in to comment.