Alchemy Logo

ExecutableFunctionName

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

Defined in: account-kit/react/dist/types/hooks/useClientActions.d.ts:23

Type ParameterDefault type

TActions extends object

object

Was this page helpful?