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