Skip to content

Commit 100d1ea

Browse files
fix: missing import
1 parent 60b4518 commit 100d1ea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/signals/src/with-feature.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
SignalStoreFeatureResult,
44
StateSignals,
55
} from './signal-store-models';
6+
import { Prettify } from './ts-helpers';
67

78
/**
89
* @description
@@ -31,7 +32,9 @@ export function withFeature<
3132
Output extends SignalStoreFeatureResult
3233
>(
3334
featureFactory: (
34-
store: Prettify<StateSignals<Input['state']> & Input['props'] & Input['methods']>
35+
store: Prettify<
36+
StateSignals<Input['state']> & Input['props'] & Input['methods']
37+
>
3538
) => SignalStoreFeature<Input, Output>
3639
): SignalStoreFeature<Input, Output> {
3740
return (store) => {

0 commit comments

Comments
 (0)