@pinia/root / pinia / _StoreWithActions
_StoreWithActions<A>
ts
type _StoreWithActions<A> = { [k in keyof A]: A[k] extends (args: infer P) => infer R ? (args: P) => R : never };
Store augmented for actions. For internal usage only. For internal use only
Type Parameters
• A