FBSDKLoginManagerLoginResultBlock.h 600 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. #if !TARGET_OS_TV
  9. @class FBSDKLoginManagerLoginResult;
  10. /**
  11. Describes the call back to the FBSDKLoginManager
  12. @param result the result of the authorization
  13. @param error the authorization error, if any.
  14. */
  15. typedef void (^ FBSDKLoginManagerLoginResultBlock)(FBSDKLoginManagerLoginResult *_Nullable result,
  16. NSError *_Nullable error)
  17. NS_SWIFT_NAME(LoginManagerLoginResultBlock);
  18. #endif