Skip to main content
type UseWaitForUserOperationReturnType = {
  status: Status;
  data:   | GetUserOperationResult
     | undefined;
  error: Error | undefined;
};
Represents the return type of the useWaitForUserOperation hook.

Properties

PropertyType
statusStatus
data| GetUserOperationResult | undefined
errorError | undefined