Skip to content
Alchemy Logo

ExecutableFunctionName

type ExecutableFunctionName<TActions> =
  keyof TActions extends infer functionName
    ? [functionName] extends [never]
      ? string
      : functionName
    : string;

Defined in: account-kit/react/src/hooks/useClientActions.ts:37

Type ParameterDefault type

TActions extends object

object

Was this page helpful?