File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -609,18 +609,14 @@ export type _ExtractStateFromSetupStore<SS> = SS extends undefined | void
609
609
*/
610
610
export type _ExtractActionsFromSetupStore < SS > = SS extends undefined | void
611
611
? { }
612
- : _ExtractActionsFromSetupStore_Keys < SS > extends keyof SS
613
- ? Pick < SS , _ExtractActionsFromSetupStore_Keys < SS > >
614
- : never
612
+ : Pick < SS , _ExtractActionsFromSetupStore_Keys < SS > >
615
613
616
614
/**
617
615
* For internal use **only**
618
616
*/
619
617
export type _ExtractGettersFromSetupStore < SS > = SS extends undefined | void
620
618
? { }
621
- : _ExtractGettersFromSetupStore_Keys < SS > extends keyof SS
622
- ? Pick < SS , _ExtractGettersFromSetupStore_Keys < SS > >
623
- : never
619
+ : Pick < SS , _ExtractGettersFromSetupStore_Keys < SS > >
624
620
625
621
/**
626
622
* Options passed to `defineStore()` that are common between option and setup
You can’t perform that action at this time.
0 commit comments