type UseClientActionsResult<TActions> = object;Defined in: account-kit/react/src/hooks/useClientActions.ts:21
| Type Parameter | Default type |
|---|---|
TActions extends object | object |
| Property | Type |
| :------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------- | ----------- |
| data | ReturnType<TActions[keyof TActions]> | undefined |
| error? | Error | null |
| executeAction | <TFunctionName>(params) => void |
| executeActionAsync | <TFunctionName>(params) => Promise<ExecuteableFunctionResult<TFunctionName>> |
| isExecutingAction | boolean |