Home > @xoram/plugin-panoramique > _ExtractActionsFromSetupStore_Keys
_ExtractActionsFromSetupStore_Keys type
List all keys of action-like members of an object.
Stolen from Pinia's types
Signature:
typescript
export declare type _ExtractActionsFromSetupStore_Keys<SS> = keyof {
[K in keyof SS as SS[K] extends _Method ? K : never]: any;
};
1
2
3
2
3
References: _Method